Lines Matching refs:_PAGE_USER
213 #define _PAGE_USER 0x010 /* matches one of the zone permission bits */ macro
254 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
255 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
256 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
258 __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
259 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
260 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
334 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } in pte_read()
344 { pte_val(pte) &= ~_PAGE_USER; return pte; } in pte_rdprotect()
355 { pte_val(pte) |= _PAGE_USER; return pte; } in pte_mkread()
357 { pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; } in pte_mkexec()