Searched refs:PTE_BIT_FUNC (Results 1 – 4 of 4) sorted by relevance
| /linux-4.4.14/arch/blackfin/include/asm/ |
| D | pgtable.h | 60 #define PTE_BIT_FUNC(fn, op) \ macro 63 PTE_BIT_FUNC(rdprotect, &= ~_PAGE_RD); 64 PTE_BIT_FUNC(mkread, |= _PAGE_RD); 65 PTE_BIT_FUNC(wrprotect, &= ~_PAGE_WR); 66 PTE_BIT_FUNC(mkwrite, |= _PAGE_WR); 67 PTE_BIT_FUNC(exprotect, &= ~_PAGE_USER); 68 PTE_BIT_FUNC(mkexec, |= _PAGE_USER); 69 PTE_BIT_FUNC(mkclean, &= ~_PAGE_DIRTY); 70 PTE_BIT_FUNC(mkdirty, |= _PAGE_DIRTY); 71 PTE_BIT_FUNC(mkold, &= ~_PAGE_ACCESSED); [all …]
|
| /linux-4.4.14/arch/arc/include/asm/ |
| D | pgtable.h | 302 #define PTE_BIT_FUNC(fn, op) \ macro 305 PTE_BIT_FUNC(mknotpresent, &= ~(_PAGE_PRESENT)); 306 PTE_BIT_FUNC(wrprotect, &= ~(_PAGE_WRITE)); 307 PTE_BIT_FUNC(mkwrite, |= (_PAGE_WRITE)); 308 PTE_BIT_FUNC(mkclean, &= ~(_PAGE_DIRTY)); 309 PTE_BIT_FUNC(mkdirty, |= (_PAGE_DIRTY)); 310 PTE_BIT_FUNC(mkold, &= ~(_PAGE_ACCESSED)); 311 PTE_BIT_FUNC(mkyoung, |= (_PAGE_ACCESSED)); 312 PTE_BIT_FUNC(exprotect, &= ~(_PAGE_EXECUTE)); 313 PTE_BIT_FUNC(mkexec, |= (_PAGE_EXECUTE)); [all …]
|
| /linux-4.4.14/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, |= _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, |= _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 …]
|
| /linux-4.4.14/arch/unicore32/include/asm/ |
| D | pgtable.h | 184 #define PTE_BIT_FUNC(fn, op) \ macro 187 PTE_BIT_FUNC(wrprotect, &= ~PTE_WRITE); 188 PTE_BIT_FUNC(mkwrite, |= PTE_WRITE); 189 PTE_BIT_FUNC(mkclean, &= ~PTE_DIRTY); 190 PTE_BIT_FUNC(mkdirty, |= PTE_DIRTY); 191 PTE_BIT_FUNC(mkold, &= ~PTE_YOUNG); 192 PTE_BIT_FUNC(mkyoung, |= PTE_YOUNG);
|