Home
last modified time | relevance | path

Searched refs:next_victim_seg (Results 1 – 3 of 3) sorted by relevance

/linux-6.6.21/fs/f2fs/
Dgc.c794 if (sbi->next_victim_seg[BG_GC] != NULL_SEGNO) { in f2fs_get_victim()
795 p.min_segno = sbi->next_victim_seg[BG_GC]; in f2fs_get_victim()
797 sbi->next_victim_seg[BG_GC] = NULL_SEGNO; in f2fs_get_victim()
801 sbi->next_victim_seg[FG_GC] != NULL_SEGNO) { in f2fs_get_victim()
802 p.min_segno = sbi->next_victim_seg[FG_GC]; in f2fs_get_victim()
804 sbi->next_victim_seg[FG_GC] = NULL_SEGNO; in f2fs_get_victim()
1780 sbi->next_victim_seg[gc_type] = in do_garbage_collect()
2006 if (sbi->next_victim_seg[gc_type] >= start) in free_segment_range()
2007 sbi->next_victim_seg[gc_type] = NULL_SEGNO; in free_segment_range()
Dsuper.c3813 sbi->next_victim_seg[BG_GC] = NULL_SEGNO; in init_sb_info()
3814 sbi->next_victim_seg[FG_GC] = NULL_SEGNO; in init_sb_info()
Df2fs.h1659 unsigned int next_victim_seg[2]; /* next segment in victim section */ member