Lines Matching refs:_PAGE_USER
50 #define _PAGE_USER __HVM_PTE_U macro
120 #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_USER | \
122 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | \
125 #define PAGE_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
128 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
144 #define __P000 __pgprot(_PAGE_PRESENT | _PAGE_USER | CACHEDEF)
145 #define __P001 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | CACHEDEF)
148 #define __P100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
150 #define __P101 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_EXECUTE | \
158 #define __S010 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
160 #define __S011 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
162 #define __S100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
165 #define __S110 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
167 #define __S111 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
189 ((pte_val(pte) & (_PAGE_EXECUTE | _PAGE_USER)) == \
190 (_PAGE_EXECUTE | _PAGE_USER))