Lines Matching refs:MKP
35 #define MKP(x, w, r) __pgprot(_PAGE_PRESENT | _PAGE_CACHED | \
45 #define __P000 MKP(0, 0, 0)
46 #define __P001 MKP(0, 0, 1)
47 #define __P010 MKP(0, 0, 0) /* COW */
48 #define __P011 MKP(0, 0, 1) /* COW */
49 #define __P100 MKP(1, 0, 0)
50 #define __P101 MKP(1, 0, 1)
51 #define __P110 MKP(1, 0, 0) /* COW */
52 #define __P111 MKP(1, 0, 1) /* COW */
55 #define __S000 MKP(0, 0, 0)
56 #define __S001 MKP(0, 0, 1)
57 #define __S010 MKP(0, 1, 0)
58 #define __S011 MKP(0, 1, 1)
59 #define __S100 MKP(1, 0, 0)
60 #define __S101 MKP(1, 0, 1)
61 #define __S110 MKP(1, 1, 0)
62 #define __S111 MKP(1, 1, 1)
71 #define PAGE_COPY MKP(0, 0, 1)