Lines Matching refs:_PAGE_PRESENT
46 #define _PAGE_PRESENT (1<<0) macro
55 #define _PAGE_VALID _PAGE_PRESENT
107 #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_USER | \
109 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | \
112 #define PAGE_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
115 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
117 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_READ | \
131 #define __P000 __pgprot(_PAGE_PRESENT | _PAGE_USER | CACHEDEF)
132 #define __P001 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | CACHEDEF)
135 #define __P100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
137 #define __P101 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_EXECUTE | \
145 #define __S010 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
147 #define __S011 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
149 #define __S100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
152 #define __S110 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
154 #define __S111 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
291 return pte_val(pte) & _PAGE_PRESENT; in pte_present()