Searched refs:PTE_BIT_FUNC (Results 1 – 2 of 2) sorted by relevance
/linux-6.12.1/arch/arc/include/asm/ |
D | pgtable-bits-arcv2.h | 85 #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(mkhuge, |= (_PAGE_HW_SZ)); [all …]
|
/linux-6.12.1/arch/sh/include/asm/ |
D | pgtable_32.h | 351 #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(low, mkold, &= ~_PAGE_ACCESSED); [all …]
|