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

/linux-master/arch/arc/include/asm/
H A Dpgtable-bits-arcv2.h85 #define PTE_BIT_FUNC(fn, op) \ macro
88 PTE_BIT_FUNC(mknotpresent, &= ~(_PAGE_PRESENT));
89 PTE_BIT_FUNC(wrprotect, &= ~(_PAGE_WRITE));
90 PTE_BIT_FUNC(mkwrite_novma, |= (_PAGE_WRITE));
91 PTE_BIT_FUNC(mkclean, &= ~(_PAGE_DIRTY));
92 PTE_BIT_FUNC(mkdirty, |= (_PAGE_DIRTY));
93 PTE_BIT_FUNC(mkold, &= ~(_PAGE_ACCESSED));
94 PTE_BIT_FUNC(mkyoung, |= (_PAGE_ACCESSED));
95 PTE_BIT_FUNC(mkspecial, |= (_PAGE_SPECIAL));
96 PTE_BIT_FUNC(mkhug
[all...]
/linux-master/arch/sh/include/asm/
H A Dpgtable_32.h351 #define PTE_BIT_FUNC(h,fn,op) \ macro
360 PTE_BIT_FUNC(high, wrprotect, &= ~(_PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE));
361 PTE_BIT_FUNC(high, mkwrite_novma, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE);
362 PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
364 PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
365 PTE_BIT_FUNC(low, mkwrite_novma, |= _PAGE_RW);
366 PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
369 PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
370 PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
371 PTE_BIT_FUNC(lo
[all...]

Completed in 139 milliseconds