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
100
#define PAGE_KERNEL _MOD_PROT(pgprot_kernel, L_PTE_XN)
arch/arm/include/asm/pgtable.h
103
#define __PAGE_NONE __pgprot(_L_PTE_DEFAULT | L_PTE_RDONLY | L_PTE_XN | L_PTE_NONE)
arch/arm/include/asm/pgtable.h
104
#define __PAGE_SHARED __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_XN)
arch/arm/include/asm/pgtable.h
106
#define __PAGE_COPY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
arch/arm/include/asm/pgtable.h
108
#define __PAGE_READONLY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
arch/arm/include/asm/pgtable.h
124
__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
128
__pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE | L_PTE_XN)
arch/arm/include/asm/pgtable.h
135
__pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_UNCACHED | L_PTE_XN)
arch/arm/include/asm/pgtable.h
185
#define pte_exec(pte) (pte_isclear((pte), L_PTE_XN))
arch/arm/include/asm/pgtable.h
260
return clear_pte_bit(pte, __pgprot(L_PTE_XN));
arch/arm/include/asm/pgtable.h
265
return set_pte_bit(pte, __pgprot(L_PTE_XN));
arch/arm/include/asm/pgtable.h
270
const pteval_t mask = L_PTE_XN | L_PTE_RDONLY | L_PTE_USER |
arch/arm/include/asm/pgtable.h
93
#define PAGE_NONE _MOD_PROT(pgprot_user, L_PTE_XN | L_PTE_RDONLY | L_PTE_NONE)
arch/arm/include/asm/pgtable.h
94
#define PAGE_SHARED _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_XN)
arch/arm/include/asm/pgtable.h
96
#define PAGE_COPY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
arch/arm/include/asm/pgtable.h
98
#define PAGE_READONLY _MOD_PROT(pgprot_user, 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
228
#define PROT_PTE_DEVICE L_PTE_PRESENT|L_PTE_YOUNG|L_PTE_DIRTY|L_PTE_XN
arch/arm/mm/mmu.c
294
L_PTE_XN,
arch/arm/mm/mmu.c
301
L_PTE_XN | L_PTE_RDONLY,
arch/arm/mm/mmu.c
323
L_PTE_XN,
arch/arm/mm/mmu.c
335
L_PTE_MT_UNCACHED | L_PTE_XN,
arch/arm/mm/mmu.c
343
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+\