Lines Matching refs:si
1687 #define stat_inc_cp_count(si) ((si)->cp_count++) argument
1688 #define stat_inc_call_count(si) ((si)->call_count++) argument
1722 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1723 (si)->tot_segs++; \
1725 si->data_segs++; \
1726 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
1728 si->node_segs++; \
1729 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
1733 #define stat_inc_tot_blk_count(si, blks) \ argument
1734 (si->tot_blks += (blks))
1738 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1739 stat_inc_tot_blk_count(si, blks); \
1740 si->data_blks += (blks); \
1741 si->bg_data_blks += (gc_type == BG_GC) ? (blks) : 0; \
1746 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
1747 stat_inc_tot_blk_count(si, blks); \
1748 si->node_blks += (blks); \
1749 si->bg_node_blks += (gc_type == BG_GC) ? (blks) : 0; \
1757 #define stat_inc_cp_count(si) argument
1758 #define stat_inc_call_count(si) argument
1759 #define stat_inc_bggc_count(si) argument
1772 #define stat_inc_tot_blk_count(si, blks) argument