Home
last modified time | relevance | path

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

/linux-6.3-rc2/arch/arm/include/asm/
A Dpgtable-3level.h167 #define pte_same(pte_a,pte_b) ((pte_present(pte_a) ? pte_val(pte_a) & ~PTE_EXT_NG \ argument
169 == (pte_present(pte_b) ? pte_val(pte_b) & ~PTE_EXT_NG \
170 : pte_val(pte_b)))
/linux-6.3-rc2/arch/powerpc/include/asm/book3s/64/
A 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()
A Dradix.h202 static inline int radix__pte_same(pte_t pte_a, pte_t pte_b) in radix__pte_same() argument
204 return ((pte_raw(pte_a) ^ pte_raw(pte_b)) == 0); in radix__pte_same()
A Dpgtable.h766 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument
769 return radix__pte_same(pte_a, pte_b); in pte_same()
770 return hash__pte_same(pte_a, pte_b); in pte_same()
/linux-6.3-rc2/arch/um/include/asm/
A Dpgtable.h252 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument
254 return !((pte_val(pte_a) ^ pte_val(pte_b)) & ~_PAGE_NEWPAGE); in pte_same()
/linux-6.3-rc2/arch/riscv/include/asm/
A Dpgtable.h433 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument
435 return pte_val(pte_a) == pte_val(pte_b); in pte_same()
/linux-6.3-rc2/arch/mips/include/asm/
A Dpgtable.h477 static inline int pte_same(pte_t pte_a, pte_t pte_b) argument
479 return pte_val(pte_a) == pte_val(pte_b);
/linux-6.3-rc2/include/linux/
A Dpgtable.h635 static inline int pte_same(pte_t pte_a, pte_t pte_b) in pte_same() argument
637 return pte_val(pte_a) == pte_val(pte_b); in pte_same()

Completed in 22 milliseconds