Searched refs:pte_b (Results 1 – 6 of 6) sorted by relevance
188 #define pte_same(pte_a,pte_b) ((pte_present(pte_a) ? pte_val(pte_a) & ~PTE_EXT_NG \ argument190 == (pte_present(pte_b) ? pte_val(pte_b) & ~PTE_EXT_NG \191 : pte_val(pte_b)))
206 static inline int hash__pte_same(pte_t pte_a, pte_t pte_b) in hash__pte_same() argument208 return (((pte_raw(pte_a) ^ pte_raw(pte_b)) & ~cpu_to_be64(_PAGE_HPTEFLAGS)) == 0); in hash__pte_same()
180 static inline int radix__pte_same(pte_t pte_a, pte_t pte_b) in radix__pte_same() argument182 return ((pte_raw(pte_a) ^ pte_raw(pte_b)) == 0); in radix__pte_same()
801 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument804 return radix__pte_same(pte_a, pte_b); in pte_same()805 return hash__pte_same(pte_a, pte_b); in pte_same()
272 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument274 return !((pte_val(pte_a) ^ pte_val(pte_b)) & ~_PAGE_NEWPAGE); in pte_same()
316 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument318 return pte_val(pte_a) == pte_val(pte_b); in pte_same()