Home
last modified time | relevance | path

Searched refs:count_type (Results 1 – 2 of 2) sorted by relevance

/kernel/linux/linux-5.10/fs/f2fs/
Df2fs.h1019 enum count_type { enum
2110 static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type) in inc_page_count() argument
2112 atomic_inc(&sbi->nr_pages[count_type]); in inc_page_count()
2114 if (count_type == F2FS_DIRTY_DENTS || in inc_page_count()
2115 count_type == F2FS_DIRTY_NODES || in inc_page_count()
2116 count_type == F2FS_DIRTY_META || in inc_page_count()
2117 count_type == F2FS_DIRTY_QDATA || in inc_page_count()
2118 count_type == F2FS_DIRTY_IMETA) in inc_page_count()
2131 static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type) in dec_page_count() argument
2133 atomic_dec(&sbi->nr_pages[count_type]); in dec_page_count()
[all …]
Ddata.c99 static enum count_type __read_io_type(struct page *page) in __read_io_type()
350 enum count_type type = WB_DATA_TYPE(page); in f2fs_write_end_io()