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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/include/asm/
H A Dpgtable.h65 #define PTE_BIT_FUNC(fn, op) \ macro
68 PTE_BIT_FUNC(rdprotect, &= ~_PAGE_RD);
69 PTE_BIT_FUNC(mkread, |= _PAGE_RD);
70 PTE_BIT_FUNC(wrprotect, &= ~_PAGE_WR);
71 PTE_BIT_FUNC(mkwrite, |= _PAGE_WR);
72 PTE_BIT_FUNC(exprotect, &= ~_PAGE_USER);
73 PTE_BIT_FUNC(mkexec, |= _PAGE_USER);
74 PTE_BIT_FUNC(mkclean, &= ~_PAGE_DIRTY);
75 PTE_BIT_FUNC(mkdirty, |= _PAGE_DIRTY);
76 PTE_BIT_FUNC(mkol
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dpgtable_32.h324 #define PTE_BIT_FUNC(h,fn,op) \ macro
333 PTE_BIT_FUNC(high, wrprotect, &= ~(_PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE));
334 PTE_BIT_FUNC(high, mkwrite, |= _PAGE_EXT_USER_WRITE | _PAGE_EXT_KERN_WRITE);
335 PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
337 PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
338 PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
339 PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
342 PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
343 PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
344 PTE_BIT_FUNC(lo
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/include/asm/
H A Dpgtable.h295 #define PTE_BIT_FUNC(fn,op) \ macro
298 PTE_BIT_FUNC(wrprotect, &= ~L_PTE_WRITE);
299 PTE_BIT_FUNC(mkwrite, |= L_PTE_WRITE);
300 PTE_BIT_FUNC(mkclean, &= ~L_PTE_DIRTY);
301 PTE_BIT_FUNC(mkdirty, |= L_PTE_DIRTY);
302 PTE_BIT_FUNC(mkold, &= ~L_PTE_YOUNG);
303 PTE_BIT_FUNC(mkyoung, |= L_PTE_YOUNG);

Completed in 63 milliseconds