Home
last modified time | relevance | path

Searched refs:segs_per_sec (Results 1 – 4 of 4) sorted by relevance

/linux-6.15/fs/f2fs/
H A Dsuper.c3539 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main; in sanity_check_raw_super() local
3602 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec); in sanity_check_raw_super()
3616 segs_per_sec > segment_count || !segs_per_sec) { in sanity_check_raw_super()
3618 segment_count, total_sections, segs_per_sec); in sanity_check_raw_super()
3622 if (segment_count_main != total_sections * segs_per_sec) { in sanity_check_raw_super()
3624 segment_count_main, total_sections, segs_per_sec); in sanity_check_raw_super()
3628 if ((segment_count / segs_per_sec) < total_sections) { in sanity_check_raw_super()
3630 segment_count, segs_per_sec, total_sections); in sanity_check_raw_super()
3879 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec); in init_sb_info()
H A Df2fs.h1659 unsigned int segs_per_sec; /* segments per section */ member
1864 #define BLKS_PER_SEC(sbi) (SEGS_TO_BLKS(sbi, (sbi)->segs_per_sec))
1865 #define SEGS_PER_SEC(sbi) ((sbi)->segs_per_sec)
H A Dsegment.c3789 !((curseg->segno + 1) % sbi->segs_per_sec)) { in f2fs_allocate_data_block()
/linux-6.15/include/linux/
H A Df2fs_fs.h118 __le32 segs_per_sec; /* # of segments per section */ member