Searched refs:PTE_BIT_FUNC (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/arch/arc/include/asm/ |
D | pgtable.h | 308 #define PTE_BIT_FUNC(fn, op) \ macro 311 PTE_BIT_FUNC(mknotpresent, &= ~(_PAGE_PRESENT)); 312 PTE_BIT_FUNC(wrprotect, &= ~(_PAGE_WRITE)); 313 PTE_BIT_FUNC(mkwrite, |= (_PAGE_WRITE)); 314 PTE_BIT_FUNC(mkclean, &= ~(_PAGE_DIRTY)); 315 PTE_BIT_FUNC(mkdirty, |= (_PAGE_DIRTY)); 316 PTE_BIT_FUNC(mkold, &= ~(_PAGE_ACCESSED)); 317 PTE_BIT_FUNC(mkyoung, |= (_PAGE_ACCESSED)); 318 PTE_BIT_FUNC(exprotect, &= ~(_PAGE_EXECUTE)); 319 PTE_BIT_FUNC(mkexec, |= (_PAGE_EXECUTE)); [all …]
|
/Linux-v4.19/arch/sh/include/asm/ |
D | pgtable_32.h | 352 #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-v4.19/arch/unicore32/include/asm/ |
D | pgtable.h | 185 #define PTE_BIT_FUNC(fn, op) \ macro 188 PTE_BIT_FUNC(wrprotect, &= ~PTE_WRITE); 189 PTE_BIT_FUNC(mkwrite, |= PTE_WRITE); 190 PTE_BIT_FUNC(mkclean, &= ~PTE_DIRTY); 191 PTE_BIT_FUNC(mkdirty, |= PTE_DIRTY); 192 PTE_BIT_FUNC(mkold, &= ~PTE_YOUNG); 193 PTE_BIT_FUNC(mkyoung, |= PTE_YOUNG);
|
/Linux-v4.19/arch/nds32/include/asm/ |
D | pgtable.h | 271 #define PTE_BIT_FUNC(fn,op) \ macro 288 PTE_BIT_FUNC(exprotect, &=~_PAGE_E); 289 PTE_BIT_FUNC(mkexec, |=_PAGE_E); 290 PTE_BIT_FUNC(mkclean, &=~_PAGE_D); 291 PTE_BIT_FUNC(mkdirty, |=_PAGE_D); 292 PTE_BIT_FUNC(mkold, &=~_PAGE_YOUNG); 293 PTE_BIT_FUNC(mkyoung, |=_PAGE_YOUNG);
|