Lines Matching refs:_PAGE_USER
92 #define _PAGE_USER 0x002UL /* matches one of the PP bits */ macro
119 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER)
120 #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_RW | _PAGE_USER | _PAGE_EXEC)
121 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
122 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
123 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
124 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
245 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER;} in pte_read()
255 pte_val(pte) &= ~_PAGE_USER; return pte; } in pte_rdprotect()
266 pte_val(pte) |= _PAGE_USER; return pte; } in pte_mkread()
268 pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; } in pte_mkexec()