Lines Matching defs:_PAGE_USER
150 #define _PAGE_USER 0x010 /* matches one of the zone permission bits */
194 #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
195 #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
196 #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
198 __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
199 #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
200 #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
245 static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; }
255 { pte_val(pte) &= ~_PAGE_USER; return pte; }
266 { pte_val(pte) |= _PAGE_USER; return pte; }
268 { pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; }