Home
last modified time | relevance | path

Searched defs:pte_dirty (Results 1 – 22 of 22) 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/mips/include/asm/ !
H A Dpgtable.h292 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; } function
356 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; } function
/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/csky/include/asm/ !
H A Dpgtable.h151 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/hexagon/include/asm/ !
H A Dpgtable.h279 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/nios2/include/asm/ !
H A Dpgtable.h89 static inline int pte_dirty(pte_t pte) \ in pte_dirty() function
/linux/arch/powerpc/include/asm/nohash/ !
H A Dpgtable.h192 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() function
/linux/arch/arm/include/asm/ !
H A Dpgtable.h183 #define pte_dirty(pte) (pte_isset((pte), L_PTE_DIRTY)) macro
/linux/arch/microblaze/include/asm/ !
H A Dpgtable.h248 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() function
/linux/arch/xtensa/include/asm/ !
H A Dpgtable.h252 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty() function
/linux/arch/sparc/include/asm/ !
H A Dpgtable_32.h217 static inline int pte_dirty(pte_t pte) in pte_dirty() function
H A Dpgtable_64.h359 static inline unsigned long pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/alpha/include/asm/ !
H A Dpgtable.h246 extern 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.h394 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.h357 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.h397 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/powerpc/include/asm/book3s/64/ !
H A Dpgtable.h445 static inline int pte_dirty(pte_t pte) in pte_dirty() function
/linux/arch/x86/include/asm/ !
H A Dpgtable.h155 static inline bool pte_dirty(pte_t pte) in pte_dirty() function
/linux/fs/proc/ !
H A Dtask_mmu.c3013 static void gather_stats(struct page *page, struct numa_maps *md, int pte_dirty, in gather_stats()