Searched refs:PTE_BIT_FUNC (Results 1 – 3 of 3) sorted by relevance
/arch/blackfin/include/asm/ |
D | pgtable.h | 59 #define PTE_BIT_FUNC(fn, op) \ macro 62 PTE_BIT_FUNC(rdprotect, &= ~_PAGE_RD); 63 PTE_BIT_FUNC(mkread, |= _PAGE_RD); 64 PTE_BIT_FUNC(wrprotect, &= ~_PAGE_WR); 65 PTE_BIT_FUNC(mkwrite, |= _PAGE_WR); 66 PTE_BIT_FUNC(exprotect, &= ~_PAGE_USER); 67 PTE_BIT_FUNC(mkexec, |= _PAGE_USER); 68 PTE_BIT_FUNC(mkclean, &= ~_PAGE_DIRTY); 69 PTE_BIT_FUNC(mkdirty, |= _PAGE_DIRTY); 70 PTE_BIT_FUNC(mkold, &= ~_PAGE_ACCESSED); [all …]
|
/arch/sh/include/asm/ |
D | pgtable_32.h | 339 #define PTE_BIT_FUNC(h,fn,op) \ macro 348 PTE_BIT_FUNC(high, wrprotect, &= ~_PAGE_EXT_USER_WRITE); 349 PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE); 350 PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE); 352 PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW); 353 PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW); 354 PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE); 357 PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY); 358 PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY); 359 PTE_BIT_FUNC(low, mkold, &= ~_PAGE_ACCESSED); [all …]
|
/arch/arm/include/asm/ |
D | pgtable.h | 297 #define PTE_BIT_FUNC(fn,op) \ macro 300 PTE_BIT_FUNC(wrprotect, &= ~L_PTE_WRITE); 301 PTE_BIT_FUNC(mkwrite, |= L_PTE_WRITE); 302 PTE_BIT_FUNC(mkclean, &= ~L_PTE_DIRTY); 303 PTE_BIT_FUNC(mkdirty, |= L_PTE_DIRTY); 304 PTE_BIT_FUNC(mkold, &= ~L_PTE_YOUNG); 305 PTE_BIT_FUNC(mkyoung, |= L_PTE_YOUNG);
|