Lines Matching refs:__pgprot
81 #define PAGE_NONE __pgprot(_PAGE_PROT_NONE)
82 #define PAGE_READ __pgprot(_PAGE_BASE | _PAGE_READ)
83 #define PAGE_WRITE __pgprot(_PAGE_BASE | _PAGE_READ | _PAGE_WRITE)
84 #define PAGE_EXEC __pgprot(_PAGE_BASE | _PAGE_EXEC)
85 #define PAGE_READ_EXEC __pgprot(_PAGE_BASE | _PAGE_READ | _PAGE_EXEC)
86 #define PAGE_WRITE_EXEC __pgprot(_PAGE_BASE | _PAGE_READ | \
101 #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
102 #define PAGE_KERNEL_READ __pgprot(_PAGE_KERNEL & ~_PAGE_WRITE)
103 #define PAGE_KERNEL_EXEC __pgprot(_PAGE_KERNEL | _PAGE_EXEC)
104 #define PAGE_KERNEL_READ_EXEC __pgprot((_PAGE_KERNEL & ~_PAGE_WRITE) \
107 #define PAGE_TABLE __pgprot(_PAGE_TABLE)
456 #define PAGE_SHARED __pgprot(0)
457 #define PAGE_KERNEL __pgprot(0)