Lines Matching refs:_PAGE_USER
249 #define _PAGE_USER 0x010 /* matches one of the zone permission bits */ macro
279 #define _PAGE_USER 0x00000040 /* S: User page */ macro
315 #define _PAGE_USER 0x0800 /* One of the PP bits, the other is USER&~RW */ macro
335 #define _PAGE_USER 0x004 /* usermode access allowed */ macro
396 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
397 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
398 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
399 #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
400 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
401 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
469 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } in pte_read()
479 pte_val(pte) &= ~_PAGE_USER; return pte; } in pte_rdprotect()
490 pte_val(pte) |= _PAGE_USER; return pte; } in pte_mkread()
492 pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; } in pte_mkexec()