Lines Matching refs:__pgprot
168 #define PAGE_NONE __pgprot(_PAGE_NONE | _PAGE_USER)
169 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER)
170 #define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
171 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER)
172 #define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
173 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE)
175 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE | _PAGE_HW_EXEC)
176 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_HW_WRITE)
177 #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT)
178 #define PAGE_KERNEL_EXEC __pgprot(_PAGE_PRESENT|_PAGE_HW_WRITE|_PAGE_HW_EXEC)
189 # define PAGE_NONE __pgprot(0)
190 # define PAGE_SHARED __pgprot(0)
191 # define PAGE_COPY __pgprot(0)
192 # define PAGE_READONLY __pgprot(0)
193 # define PAGE_KERNEL __pgprot(0)
283 #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) & ~_PAGE_CA_MASK))