Symbol: _PAGE_VALID
arch/alpha/include/asm/pgtable.h
103
#define PAGE_NONE __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
arch/alpha/include/asm/pgtable.h
104
#define PAGE_SHARED __pgprot(_PAGE_VALID | __ACCESS_BITS)
arch/alpha/include/asm/pgtable.h
105
#define PAGE_COPY __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW)
arch/alpha/include/asm/pgtable.h
106
#define PAGE_READONLY __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW)
arch/alpha/include/asm/pgtable.h
107
#define PAGE_KERNEL __pgprot(_PAGE_VALID | _PAGE_ASM | _PAGE_KRE | _PAGE_KWE)
arch/alpha/include/asm/pgtable.h
109
#define _PAGE_NORMAL(x) __pgprot(_PAGE_VALID | __ACCESS_BITS | (x))
arch/alpha/include/asm/pgtable.h
206
extern inline int pte_present(pte_t pte) { return pte_val(pte) & _PAGE_VALID; }
arch/alpha/include/asm/pgtable.h
214
extern inline int pmd_present(pmd_t pmd) { return pmd_val(pmd) & _PAGE_VALID; }
arch/alpha/include/asm/pgtable.h
219
extern inline int pud_present(pud_t pud) { return pud_val(pud) & _PAGE_VALID; }
arch/alpha/include/asm/pgtable.h
96
#define _PAGE_TABLE (_PAGE_VALID | __DIRTY_BITS | __ACCESS_BITS)
arch/alpha/kernel/proto.h
200
prot = __pgprot(_PAGE_VALID | _PAGE_ASM | _PAGE_KRE
arch/csky/include/asm/pgtable.h
175
pte_val(pte) &= ~(_PAGE_ACCESSED|_PAGE_VALID);
arch/csky/include/asm/pgtable.h
199
pte_val(pte) |= _PAGE_VALID;
arch/csky/include/asm/pgtable.h
62
#define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_READ | _PAGE_VALID | \
arch/csky/include/asm/pgtable.h
67
#define _PAGE_IOREMAP (_PAGE_BASE | _PAGE_READ | _PAGE_VALID | \
arch/loongarch/include/asm/kfence.h
60
set_pte(pte, __pte(pte_val(ptep_get(pte)) & ~(_PAGE_VALID | _PAGE_PRESENT)));
arch/loongarch/include/asm/kfence.h
62
set_pte(pte, __pte(pte_val(ptep_get(pte)) | (_PAGE_VALID | _PAGE_PRESENT)));
arch/loongarch/include/asm/pgtable-bits.h
106
#define __READABLE (_PAGE_VALID)
arch/loongarch/include/asm/pgtable.h
596
pmd_val(pmd) &= ~(_PAGE_PRESENT | _PAGE_VALID | _PAGE_DIRTY | _PAGE_PROTNONE);
arch/loongarch/mm/cache.c
165
[VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
168
[VM_WRITE] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
171
[VM_WRITE | VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
174
[VM_EXEC] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
176
[VM_EXEC | VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
178
[VM_EXEC | VM_WRITE] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
180
[VM_EXEC | VM_WRITE | VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
185
[VM_SHARED | VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
188
[VM_SHARED | VM_WRITE] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
191
[VM_SHARED | VM_WRITE | VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
194
[VM_SHARED | VM_EXEC] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
196
[VM_SHARED | VM_EXEC | VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
198
[VM_SHARED | VM_EXEC | VM_WRITE] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/cache.c
201
[VM_SHARED | VM_EXEC | VM_WRITE | VM_READ] = __pgprot(_CACHE_CC | _PAGE_VALID |
arch/loongarch/mm/pageattr.c
218
return __set_memory(addr, 1, __pgprot(0), __pgprot(_PAGE_PRESENT | _PAGE_VALID));
arch/loongarch/mm/pageattr.c
234
clear = __pgprot(_PAGE_PRESENT | _PAGE_VALID);
arch/mips/include/asm/pgtable-bits.h
195
#define _PAGE_SILENT_READ _PAGE_VALID
arch/mips/include/asm/pgtable.h
724
pmd_val(pmd) &= ~(_PAGE_PRESENT | _PAGE_VALID | _PAGE_DIRTY);
arch/mips/mm/c-r4k.c
568
if ((mm == current->active_mm) && (pte_val(*ptep) & _PAGE_VALID))
arch/mips/mm/tlbex.c
1638
unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY);
arch/mips/mm/tlbex.c
1744
unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED;
arch/mips/mm/tlbex.c
1784
unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID
arch/mips/mm/tlbex.c
2090
uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
arch/mips/mm/tlbex.c
2093
uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
arch/mips/mm/tlbex.c
2156
uasm_il_bbit0(&p, &r, wr.r1, ilog2(_PAGE_VALID),
arch/mips/mm/tlbex.c
2159
uasm_i_andi(&p, wr.r3, wr.r1, _PAGE_VALID);
arch/mips/mm/tlbex.c
2208
uasm_i_ori(&p, wr.r1, wr.r1, (_PAGE_ACCESSED | _PAGE_VALID));
arch/mips/mm/tlbex.c
2264
_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
arch/mips/mm/tlbex.c
2321
_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | _PAGE_DIRTY);
arch/sparc/include/asm/pgtable_64.h
673
return pte_val(a) & _PAGE_VALID;
arch/sparc/mm/init_64.c
2222
kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
arch/sparc/mm/init_64.c
2231
kern_linear_pte_xor[2] = (_PAGE_VALID | _PAGE_SZ2GB_4V) ^
arch/sparc/mm/init_64.c
2240
kern_linear_pte_xor[3] = (_PAGE_VALID | _PAGE_SZ16GB_4V) ^
arch/sparc/mm/init_64.c
2576
pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4U |
arch/sparc/mm/init_64.c
2580
pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4V |
arch/sparc/mm/init_64.c
2607
if (!(pte & _PAGE_VALID)) {
arch/sparc/mm/init_64.c
2657
PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
arch/sparc/mm/init_64.c
2661
PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
arch/sparc/mm/init_64.c
2670
pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
arch/sparc/mm/init_64.c
2674
kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
arch/sparc/mm/init_64.c
2676
kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
arch/sparc/mm/init_64.c
2691
page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
arch/sparc/mm/init_64.c
2693
page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
arch/sparc/mm/init_64.c
2695
page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
arch/sparc/mm/init_64.c
2710
PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
arch/sparc/mm/init_64.c
2721
kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
arch/sparc/mm/init_64.c
2723
kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
arch/sparc/mm/init_64.c
2732
pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
arch/sparc/mm/init_64.c
2741
page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | page_cache4v_flag |
arch/sparc/mm/init_64.c
2743
page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | page_cache4v_flag |
arch/sparc/mm/init_64.c
2745
page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | page_cache4v_flag |
arch/sparc/mm/init_64.c
2798
val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
arch/sparc/mm/init_64.c
2802
val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
arch/sparc/mm/init_64.c
2947
if (!(pte & _PAGE_VALID))
arch/sparc/mm/tlb.c
167
if (pte_val(*pte) & _PAGE_VALID) {
arch/sparc/mm/tlb.c
262
entry = __pmd(pmd_val(*pmdp) & ~_PAGE_VALID);
tools/testing/selftests/kvm/include/loongarch/processor.h
64
#define __READABLE (_PAGE_VALID)