Searched refs:PTE_BIT_FUNC (Results 1 - 4 of 4) sorted by relevance

/arch/blackfin/include/asm/
H A Dpgtable.h65 #define PTE_BIT_FUNC(fn, op) \ macro
68 PTE_BIT_FUNC(rdprotect, &= ~_PAGE_RD);
69 PTE_BIT_FUNC(mkread, |= _PAGE_RD);
70 PTE_BIT_FUNC(wrprotect, &= ~_PAGE_WR);
71 PTE_BIT_FUNC(mkwrite, |= _PAGE_WR);
72 PTE_BIT_FUNC(exprotect, &= ~_PAGE_USER);
73 PTE_BIT_FUNC(mkexec, |= _PAGE_USER);
74 PTE_BIT_FUNC(mkclean, &= ~_PAGE_DIRTY);
75 PTE_BIT_FUNC(mkdirty, |= _PAGE_DIRTY);
76 PTE_BIT_FUNC(mkol
[all...]
/arch/unicore32/include/asm/
H A Dpgtable.h184 #define PTE_BIT_FUNC(fn, op) \ macro
187 PTE_BIT_FUNC(wrprotect, &= ~PTE_WRITE);
188 PTE_BIT_FUNC(mkwrite, |= PTE_WRITE);
189 PTE_BIT_FUNC(mkclean, &= ~PTE_DIRTY);
190 PTE_BIT_FUNC(mkdirty, |= PTE_DIRTY);
191 PTE_BIT_FUNC(mkold, &= ~PTE_YOUNG);
192 PTE_BIT_FUNC(mkyoung, |= PTE_YOUNG);
/arch/sh/include/asm/
H A Dpgtable_32.h356 #define PTE_BIT_FUNC(h,fn,op) \ macro
365 PTE_BIT_FUNC(high, wrprotect, &= ~(_PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE));
366 PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE);
367 PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
369 PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
370 PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
371 PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
374 PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
375 PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
376 PTE_BIT_FUNC(lo
[all...]
/arch/arm/include/asm/
H A Dpgtable.h229 #define PTE_BIT_FUNC(fn,op) \ macro
232 PTE_BIT_FUNC(wrprotect, |= L_PTE_RDONLY);
233 PTE_BIT_FUNC(mkwrite, &= ~L_PTE_RDONLY);
234 PTE_BIT_FUNC(mkclean, &= ~L_PTE_DIRTY);
235 PTE_BIT_FUNC(mkdirty, |= L_PTE_DIRTY);
236 PTE_BIT_FUNC(mkold, &= ~L_PTE_YOUNG);
237 PTE_BIT_FUNC(mkyoung, |= L_PTE_YOUNG);

Completed in 132 milliseconds