Home
last modified time | relevance | path

Searched refs:PTE_BIT_FUNC (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.15/arch/arc/include/asm/
Dpgtable-bits-arcv2.h100 #define PTE_BIT_FUNC(fn, op) \ macro
103 PTE_BIT_FUNC(mknotpresent, &= ~(_PAGE_PRESENT));
104 PTE_BIT_FUNC(wrprotect, &= ~(_PAGE_WRITE));
105 PTE_BIT_FUNC(mkwrite, |= (_PAGE_WRITE));
106 PTE_BIT_FUNC(mkclean, &= ~(_PAGE_DIRTY));
107 PTE_BIT_FUNC(mkdirty, |= (_PAGE_DIRTY));
108 PTE_BIT_FUNC(mkold, &= ~(_PAGE_ACCESSED));
109 PTE_BIT_FUNC(mkyoung, |= (_PAGE_ACCESSED));
110 PTE_BIT_FUNC(mkspecial, |= (_PAGE_SPECIAL));
111 PTE_BIT_FUNC(mkhuge, |= (_PAGE_HW_SZ));
/Linux-v5.15/arch/sh/include/asm/
Dpgtable_32.h352 #define PTE_BIT_FUNC(h,fn,op) \ macro
361 PTE_BIT_FUNC(high, wrprotect, &= ~(_PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE));
362 PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE);
363 PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
365 PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
366 PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
367 PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
370 PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
371 PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
372 PTE_BIT_FUNC(low, mkold, &= ~_PAGE_ACCESSED);
[all …]
/Linux-v5.15/arch/nds32/include/asm/
Dpgtable.h260 #define PTE_BIT_FUNC(fn,op) \ macro
277 PTE_BIT_FUNC(exprotect, &=~_PAGE_E);
278 PTE_BIT_FUNC(mkexec, |=_PAGE_E);
279 PTE_BIT_FUNC(mkclean, &=~_PAGE_D);
280 PTE_BIT_FUNC(mkdirty, |=_PAGE_D);
281 PTE_BIT_FUNC(mkold, &=~_PAGE_YOUNG);
282 PTE_BIT_FUNC(mkyoung, |=_PAGE_YOUNG);