Searched refs:pte_a (Results 1 – 5 of 5) sorted by relevance
200 #define pte_same(pte_a,pte_b) ((pte_present(pte_a) ? pte_val(pte_a) & ~PTE_EXT_NG \ argument201 : pte_val(pte_a)) \
160 static inline int hash__pte_same(pte_t pte_a, pte_t pte_b) in hash__pte_same() argument162 return (((pte_raw(pte_a) ^ pte_raw(pte_b)) & ~cpu_to_be64(_PAGE_HPTEFLAGS)) == 0); in hash__pte_same()
221 static inline int radix__pte_same(pte_t pte_a, pte_t pte_b) in radix__pte_same() argument223 return ((pte_raw(pte_a) ^ pte_raw(pte_b)) == 0); in radix__pte_same()
723 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument726 return radix__pte_same(pte_a, pte_b); in pte_same()727 return hash__pte_same(pte_a, pte_b); in pte_same()
269 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument271 return !((pte_val(pte_a) ^ pte_val(pte_b)) & ~_PAGE_NEWPAGE); in pte_same()