Lines Matching refs:__pgprot
172 #define PAGE_NONE __pgprot(_PAGE_NONE | _PAGE_USER)
173 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER)
174 #define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
175 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER)
176 #define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
177 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE)
179 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE | _PAGE_HW_EXEC)
180 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_HW_WRITE)
181 #define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT)
182 #define PAGE_KERNEL_EXEC __pgprot(_PAGE_PRESENT|_PAGE_HW_WRITE|_PAGE_HW_EXEC)
193 # define PAGE_NONE __pgprot(0)
194 # define PAGE_SHARED __pgprot(0)
195 # define PAGE_COPY __pgprot(0)
196 # define PAGE_READONLY __pgprot(0)
197 # define PAGE_KERNEL __pgprot(0)
291 #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) & ~_PAGE_CA_MASK))