Lines Matching refs:_PAGE_USER
51 #define _PAGE_USER __HVM_PTE_U macro
121 #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_USER | \
123 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | \
126 #define PAGE_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
129 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
145 #define __P000 __pgprot(_PAGE_PRESENT | _PAGE_USER | CACHEDEF)
146 #define __P001 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | CACHEDEF)
149 #define __P100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
151 #define __P101 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_EXECUTE | \
159 #define __S010 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
161 #define __S011 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
163 #define __S100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
166 #define __S110 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
168 #define __S111 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
190 ((pte_val(pte) & (_PAGE_EXECUTE | _PAGE_USER)) == \
191 (_PAGE_EXECUTE | _PAGE_USER))