Symbol: _PAGE_PROTNONE
arch/loongarch/include/asm/pgtable-bits.h
112
#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_NO_READ | \
arch/loongarch/include/asm/pgtable.h
250
return !!(pmd_val(pmd) & (_PAGE_PRESENT | _PAGE_PROTNONE | _PAGE_PRESENT_INVALID));
arch/loongarch/include/asm/pgtable.h
357
#define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE))
arch/loongarch/include/asm/pgtable.h
451
if ((pte_val(a) & _PAGE_PROTNONE) &&
arch/loongarch/include/asm/pgtable.h
596
pmd_val(pmd) &= ~(_PAGE_PRESENT | _PAGE_VALID | _PAGE_DIRTY | _PAGE_PROTNONE);
arch/loongarch/include/asm/pgtable.h
621
return (pte_val(pte) & _PAGE_PROTNONE);
arch/loongarch/include/asm/pgtable.h
626
return (pmd_val(pmd) & _PAGE_PROTNONE);
arch/loongarch/mm/cache.c
164
(_PAGE_PROTNONE ? : _PAGE_PRESENT)),
arch/loongarch/mm/cache.c
184
(_PAGE_PROTNONE ? : _PAGE_PRESENT)),
arch/m68k/include/asm/motorola_pgtable.h
106
#define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE))
arch/m68k/include/asm/motorola_pgtable.h
76
#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED | mm_cachebits)
arch/m68k/mm/motorola.c
401
#define PAGE_NONE_C __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
arch/sh/include/asm/pgtable_32.h
105
#define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED| \
arch/sh/include/asm/pgtable_32.h
109
#define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED | \
arch/sh/include/asm/pgtable_32.h
112
#define _PAGE_CLEAR_FLAGS (_PAGE_PROTNONE | _PAGE_ACCESSED)
arch/sh/include/asm/pgtable_32.h
176
#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
arch/sh/include/asm/pgtable_32.h
239
#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_CACHABLE | \
arch/sh/include/asm/pgtable_32.h
323
#define pte_present(x) ((x).pte_low & (_PAGE_PRESENT | _PAGE_PROTNONE))
arch/um/include/asm/pgtable.h
105
#define pte_present(x) pte_get_bits(x, (_PAGE_PRESENT | _PAGE_PROTNONE))
arch/um/include/asm/pgtable.h
125
!(pte_get_bits(pte, _PAGE_PROTNONE)));
arch/um/include/asm/pgtable.h
130
!(pte_get_bits(pte, _PAGE_PROTNONE)));
arch/um/include/asm/pgtable.h
136
!(pte_get_bits(pte, _PAGE_PROTNONE)));
arch/um/include/asm/pgtable.h
63
#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
arch/x86/include/asm/pgtable.h
1003
return (pte_flags(pte) & (_PAGE_PROTNONE | _PAGE_PRESENT))
arch/x86/include/asm/pgtable.h
1004
== _PAGE_PROTNONE;
arch/x86/include/asm/pgtable.h
1009
return (pmd_flags(pmd) & (_PAGE_PROTNONE | _PAGE_PRESENT))
arch/x86/include/asm/pgtable.h
1010
== _PAGE_PROTNONE;
arch/x86/include/asm/pgtable.h
768
__pgprot(pmd_flags(pmd) & ~(_PAGE_PRESENT|_PAGE_PROTNONE)));
arch/x86/include/asm/pgtable.h
774
__pgprot(pud_flags(pud) & ~(_PAGE_PRESENT|_PAGE_PROTNONE)));
arch/x86/include/asm/pgtable.h
969
return pte_flags(a) & (_PAGE_PRESENT | _PAGE_PROTNONE);
arch/x86/include/asm/pgtable.h
978
if ((pte_flags(a) & _PAGE_PROTNONE) &&
arch/x86/include/asm/pgtable.h
993
return pmd_flags(pmd) & (_PAGE_PRESENT | _PAGE_PROTNONE | _PAGE_PSE);