Lines Matching refs:__pgprot
118 __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
120 __pgprot(_PAGE_PRESENT | _PAGE_WRITE | _PAGE_READ | _PAGE_ACCESSED)
122 __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_WRITE | _PAGE_READ \
125 __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_ACCESSED)
127 __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_ACCESSED)
129 __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_ACCESSED)
131 __pgprot(_PAGE_PRESENT | _PAGE_EXEC | _PAGE_READ | _PAGE_ACCESSED)
139 #define MAKE_GLOBAL(x) __pgprot((x) | _PAGE_GLOBAL)
146 #define PAGE_NONE __pgprot(0)
147 #define PAGE_SHARED __pgprot(0)
148 #define PAGE_SHARED_EXEC __pgprot(0)
149 #define PAGE_COPY __pgprot(0)
150 #define PAGE_COPY_EXEC __pgprot(0)
151 #define PAGE_READONLY __pgprot(0)
152 #define PAGE_READONLY_EXEC __pgprot(0)
154 #define PAGE_KERNEL __pgprot(0)
155 #define PAGE_KERNEL_RO __pgprot(0)
156 #define PAGE_KERNEL_NOCACHE __pgprot(0)
281 return __pgprot(prot); in pgprot_noncached()