Symbol: L_PTE_XN
arch/arm/include/asm/fixmap.h
43
#define FIXMAP_PAGE_COMMON (L_PTE_YOUNG | L_PTE_PRESENT | L_PTE_XN | L_PTE_DIRTY)
arch/arm/include/asm/fixmap.h
45
#define FIXMAP_PAGE_NORMAL (pgprot_kernel | L_PTE_XN)
arch/arm/include/asm/pgtable.h
115
__pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_DEV_SHARED | L_PTE_SHARED | L_PTE_DIRTY | L_PTE_XN)
arch/arm/include/asm/pgtable.h
119
__pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE | L_PTE_XN)
arch/arm/include/asm/pgtable.h
126
__pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED | L_PTE_XN)
arch/arm/include/asm/pgtable.h
176
#define pte_exec(pte) (pte_isclear((pte), L_PTE_XN))
arch/arm/include/asm/pgtable.h
251
return clear_pte_bit(pte, __pgprot(L_PTE_XN));
arch/arm/include/asm/pgtable.h
256
return set_pte_bit(pte, __pgprot(L_PTE_XN));
arch/arm/include/asm/pgtable.h
261
const pteval_t mask = L_PTE_XN | L_PTE_RDONLY | L_PTE_USER |
arch/arm/include/asm/pgtable.h
84
#define PAGE_NONE _MOD_PROT(pgprot_user, L_PTE_XN | L_PTE_RDONLY | L_PTE_NONE)
arch/arm/include/asm/pgtable.h
85
#define PAGE_SHARED _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_XN)
arch/arm/include/asm/pgtable.h
87
#define PAGE_COPY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
arch/arm/include/asm/pgtable.h
89
#define PAGE_READONLY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
arch/arm/include/asm/pgtable.h
91
#define PAGE_KERNEL _MOD_PROT(pgprot_kernel, L_PTE_XN)
arch/arm/include/asm/pgtable.h
94
#define __PAGE_NONE __pgprot(_L_PTE_DEFAULT | L_PTE_RDONLY | L_PTE_XN | L_PTE_NONE)
arch/arm/include/asm/pgtable.h
95
#define __PAGE_SHARED __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_XN)
arch/arm/include/asm/pgtable.h
97
#define __PAGE_COPY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
arch/arm/include/asm/pgtable.h
99
#define __PAGE_READONLY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
arch/arm/kernel/efi.c
22
pte = set_pte_bit(pte, __pgprot(L_PTE_XN));
arch/arm/mm/dump.c
81
.mask = L_PTE_XN,
arch/arm/mm/dump.c
82
.val = L_PTE_XN,
arch/arm/mm/kasan_init.c
77
__pgprot(_L_PTE_DEFAULT | L_PTE_DIRTY | L_PTE_XN));
arch/arm/mm/mmu.c
221
#define PROT_PTE_DEVICE L_PTE_PRESENT|L_PTE_YOUNG|L_PTE_DIRTY|L_PTE_XN
arch/arm/mm/mmu.c
287
L_PTE_XN,
arch/arm/mm/mmu.c
294
L_PTE_XN | L_PTE_RDONLY,
arch/arm/mm/mmu.c
316
L_PTE_XN,
arch/arm/mm/mmu.c
328
L_PTE_MT_UNCACHED | L_PTE_XN,
arch/arm/mm/mmu.c
336
L_PTE_XN,
arch/arm/mm/pageattr.c
90
__pgprot(L_PTE_XN),
arch/arm/mm/pageattr.c
98
__pgprot(L_PTE_XN));
arch/arm/mm/proc-macros.S
114
(L_PTE_XN+L_PTE_USER+L_PTE_RDONLY+L_PTE_DIRTY+L_PTE_YOUNG+\