Home
last modified time | relevance | path

Searched refs:pte_b (Results 1 – 6 of 6) sorted by relevance

/arch/arm/include/asm/
Dpgtable-3level.h188 #define pte_same(pte_a,pte_b) ((pte_present(pte_a) ? pte_val(pte_a) & ~PTE_EXT_NG \ argument
190 == (pte_present(pte_b) ? pte_val(pte_b) & ~PTE_EXT_NG \
191 : pte_val(pte_b)))
/arch/powerpc/include/asm/book3s/64/
Dhash.h206 static inline int hash__pte_same(pte_t pte_a, pte_t pte_b) in hash__pte_same() argument
208 return (((pte_raw(pte_a) ^ pte_raw(pte_b)) & ~cpu_to_be64(_PAGE_HPTEFLAGS)) == 0); in hash__pte_same()
Dradix.h180 static inline int radix__pte_same(pte_t pte_a, pte_t pte_b) in radix__pte_same() argument
182 return ((pte_raw(pte_a) ^ pte_raw(pte_b)) == 0); in radix__pte_same()
Dpgtable.h801 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument
804 return radix__pte_same(pte_a, pte_b); in pte_same()
805 return hash__pte_same(pte_a, pte_b); in pte_same()
/arch/um/include/asm/
Dpgtable.h272 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument
274 return !((pte_val(pte_a) ^ pte_val(pte_b)) & ~_PAGE_NEWPAGE); in pte_same()
/arch/riscv/include/asm/
Dpgtable.h316 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument
318 return pte_val(pte_a) == pte_val(pte_b); in pte_same()