Lines Matching refs:si
1911 #define stat_inc_cp_count(si) ((si)->cp_count++) argument
1912 #define stat_inc_call_count(si) ((si)->call_count++) argument
1958 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1959 (si)->tot_segs++; \
1961 si->data_segs++; \
1962 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
1964 si->node_segs++; \
1965 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
1969 #define stat_inc_tot_blk_count(si, blks) \ argument
1970 (si->tot_blks += (blks))
1974 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1975 stat_inc_tot_blk_count(si, blks); \
1976 si->data_blks += (blks); \
1977 si->bg_data_blks += (gc_type == BG_GC) ? (blks) : 0; \
1982 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1983 stat_inc_tot_blk_count(si, blks); \
1984 si->node_blks += (blks); \
1985 si->bg_node_blks += (gc_type == BG_GC) ? (blks) : 0; \
1993 #define stat_inc_cp_count(si) argument
1994 #define stat_inc_call_count(si) argument
1995 #define stat_inc_bggc_count(si) argument
2012 #define stat_inc_tot_blk_count(si, blks) argument