Lines Matching refs:__pgprot
115 __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
117 __pgprot(_PAGE_PRESENT | _PAGE_WRITE | _PAGE_READ | _PAGE_ACCESSED)
119 __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_WRITE | _PAGE_READ \
122 __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_ACCESSED)
124 __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_ACCESSED)
126 __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_ACCESSED)
128 __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_ACCESSED)
136 #define MAKE_GLOBAL(x) __pgprot((x) | _PAGE_GLOBAL)
143 #define PAGE_NONE __pgprot(0)
144 #define PAGE_SHARED __pgprot(0)
145 #define PAGE_SHARED_EXEC __pgprot(0)
146 #define PAGE_COPY __pgprot(0)
147 #define PAGE_COPY_EXEC __pgprot(0)
148 #define PAGE_READONLY __pgprot(0)
149 #define PAGE_READONLY_EXEC __pgprot(0)
151 #define PAGE_KERNEL __pgprot(0)
152 #define PAGE_KERNEL_RO __pgprot(0)
153 #define PAGE_KERNEL_NOCACHE __pgprot(0)
270 return __pgprot(prot); in pgprot_noncached()