Lines Matching refs:old
211 * prot-none, clean, old .11.xx0000.1
213 * prot-none, dirty, old .11.xx0010.1
215 * read-only, clean, old .11.xx0100.1
217 * read-only, dirty, old .11.xx0110.1
219 * read-write, clean, old .11.xx1100.1
221 * read-write, dirty, old .10.xx1110.1
357 * prot-none, clean, old 00..1...1...00
359 * prot-none, dirty, old 10..1...1...00
361 * read-only, clean, old 00..1...1...01
363 * read-only, dirty, old 10..1...1...01
365 * read-write, clean, old 00..1...1...11
367 * read-write, dirty, old 10..0...1...11
370 * read-write, old segment table entries (origin!=0)
581 static inline void csp(unsigned int *ptr, unsigned int old, unsigned int new)
583 union register_pair r1 = { .even = old, .odd = new, };
593 static inline void cspg(unsigned long *ptr, unsigned long old, unsigned long new)
595 union register_pair r1 = { .even = old, .odd = new, };
611 static inline void crdte(unsigned long old, unsigned long new,
615 union register_pair r1 = { .even = old, .odd = new, };
902 * young/old accounting is not supported, i.e _PAGE_PROTECT and _PAGE_INVALID
1226 static inline int pte_allow_rdp(pte_t old, pte_t new)
1231 if (!(pte_val(old) & _PAGE_PROTECT) || pte_val(new) & _PAGE_PROTECT)
1234 return (pte_val(old) & _PAGE_RDP_MASK) == (pte_val(new) & _PAGE_RDP_MASK);