Home
last modified time | relevance | path

Searched refs:L_PTE_XN (Results 1 – 11 of 11) sorted by relevance

/linux-6.1.9/arch/arm/include/asm/
Dpgtable.h94 #define PAGE_NONE _MOD_PROT(pgprot_user, L_PTE_XN | L_PTE_RDONLY | L_PTE_NONE)
95 #define PAGE_SHARED _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_XN)
97 #define PAGE_COPY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
99 #define PAGE_READONLY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
101 #define PAGE_KERNEL _MOD_PROT(pgprot_kernel, L_PTE_XN)
104 #define __PAGE_NONE __pgprot(_L_PTE_DEFAULT | L_PTE_RDONLY | L_PTE_XN | L_PTE_NONE)
105 #define __PAGE_SHARED __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_XN)
107 #define __PAGE_COPY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
109 #define __PAGE_READONLY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
125 __pgprot_modify(prot, L_PTE_MT_MASK, L_PTE_MT_DEV_SHARED | L_PTE_SHARED | L_PTE_DIRTY | L_PTE_XN)
[all …]
Dfixmap.h43 #define FIXMAP_PAGE_COMMON (L_PTE_YOUNG | L_PTE_PRESENT | L_PTE_XN | L_PTE_DIRTY)
45 #define FIXMAP_PAGE_NORMAL (pgprot_kernel | L_PTE_XN)
Dpgtable-2level.h125 #define L_PTE_XN (_AT(pteval_t, 1) << 9) macro
Dpgtable-3level.h73 #define L_PTE_XN (_AT(pteval_t, 1) << 54) /* XN */ macro
/linux-6.1.9/arch/arm/mm/
Dpageattr.c90 __pgprot(L_PTE_XN), in set_memory_nx()
98 __pgprot(L_PTE_XN)); in set_memory_x()
Dmmu.c228 #define PROT_PTE_DEVICE L_PTE_PRESENT|L_PTE_YOUNG|L_PTE_DIRTY|L_PTE_XN
294 L_PTE_XN,
301 L_PTE_XN | L_PTE_RDONLY,
323 L_PTE_XN,
335 L_PTE_MT_UNCACHED | L_PTE_XN,
343 L_PTE_XN,
Dproc-v7-2level.S91 tst r1, #L_PTE_XN
Dproc-macros.S113 (L_PTE_XN+L_PTE_USER+L_PTE_RDONLY+L_PTE_DIRTY+L_PTE_YOUNG+\
175 tst r1, #L_PTE_XN
Ddump.c81 .mask = L_PTE_XN,
82 .val = L_PTE_XN,
Dkasan_init.c72 __pgprot(_L_PTE_DEFAULT | L_PTE_DIRTY | L_PTE_XN)); in kasan_pte_populate()
/linux-6.1.9/arch/arm/kernel/
Defi.c20 pte = set_pte_bit(pte, __pgprot(L_PTE_XN)); in set_permissions()