Symbol: L_PTE_USER
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
105
#define __PAGE_SHARED_EXEC __pgprot(_L_PTE_DEFAULT | L_PTE_USER)
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
107
#define __PAGE_COPY_EXEC __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY)
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
109
#define __PAGE_READONLY_EXEC __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY)
arch/arm/include/asm/pgtable.h
188
(pte_valid(pte) && pte_isset((pte), L_PTE_USER) && pte_young(pte))
arch/arm/include/asm/pgtable.h
192
pteval_t mask = L_PTE_PRESENT | L_PTE_USER;
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
94
#define PAGE_SHARED _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_XN)
arch/arm/include/asm/pgtable.h
95
#define PAGE_SHARED_EXEC _MOD_PROT(pgprot_user, L_PTE_USER)
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
97
#define PAGE_COPY_EXEC _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY)
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/include/asm/pgtable.h
99
#define PAGE_READONLY_EXEC _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY)
arch/arm/mm/dump.c
70
.mask = L_PTE_USER,
arch/arm/mm/dump.c
71
.val = L_PTE_USER,
arch/arm/mm/mmu.c
282
L_PTE_USER | L_PTE_RDONLY,
arch/arm/mm/proc-macros.S
114
(L_PTE_XN+L_PTE_USER+L_PTE_RDONLY+L_PTE_DIRTY+L_PTE_YOUNG+\