Home
last modified time | relevance | path

Searched defs:pte_dirty (Results 1 – 14 of 14) sorted by relevance

/linux/arch/arc/include/asm/
H A Dpgtable-bits-arcv2.h81 #define pte_dirty(pte) (pte_val(pte) & _PAGE_DIRTY) macro
/linux/arch/m68k/include/asm/
H A Dsun3_pgtable.h135 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & SUN3_PAGE_MODIFIED; } in pte_dirty() function
H A Dmotorola_pgtable.h147 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() function
H A Dmcf_pgtable.h167 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/powerpc/include/asm/nohash/
H A Dpgtable.h198 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() function
/linux/arch/sh/include/asm/
H A Dpgtable_32.h340 #define pte_dirty(pte) ((pte).pte_low & _PAGE_DIRTY) macro
/linux/arch/powerpc/include/asm/book3s/32/
H A Dpgtable.h395 static inline int pte_dirty(pte_t pte) { return !!(pte_val(pte) & _PAGE_DIRTY); } in pte_dirty() function
/linux/arch/parisc/include/asm/
H A Dpgtable.h304 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() function
/linux/arch/loongarch/include/asm/
H A Dpgtable.h394 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & (_PAGE_DIRTY | _PAGE_MODIFIED); } in pte_dirty() function
/linux/arch/riscv/include/asm/
H A Dpgtable.h380 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/powerpc/include/asm/book3s/64/
H A Dpgtable.h455 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/x86/include/asm/
H A Dpgtable.h148 static inline bool pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/s390/include/asm/
H A Dpgtable.h921 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/arm64/include/asm/
H A Dpgtable.h169 #define pte_dirty(pte) (pte_sw_dirty(pte) || pte_hw_dirty(pte)) macro