Lines Matching refs:__pgprot
158 #define PAGE_NONE __pgprot(_PAGE_NONE | _PAGE_USER)
159 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER)
160 #define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
161 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER)
162 #define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
163 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE)
165 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE | _PAGE_HW_EXEC)
166 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_HW_WRITE)
167 #define PAGE_KERNEL_EXEC __pgprot(_PAGE_PRESENT|_PAGE_HW_WRITE|_PAGE_HW_EXEC)
178 # define PAGE_NONE __pgprot(0)
179 # define PAGE_SHARED __pgprot(0)
180 # define PAGE_COPY __pgprot(0)
181 # define PAGE_READONLY __pgprot(0)
182 # define PAGE_KERNEL __pgprot(0)
276 #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) & ~_PAGE_CA_MASK))