OSDN Git Service

f2fs: initialize sbi->gc_mode explicitly
authorChao Yu <chao@kernel.org>
Thu, 17 Mar 2022 08:33:15 +0000 (16:33 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 18 Mar 2022 06:48:03 +0000 (23:48 -0700)
It needs to initialized sbi->gc_mode to GC_NORMAL explicitly.

Signed-off-by: Chao Yu <chao.yu@oppo.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/super.c

index 4b570b5..9176597 100644 (file)
@@ -3579,6 +3579,7 @@ static void init_sb_info(struct f2fs_sb_info *sbi)
        F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
        F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
        sbi->cur_victim_sec = NULL_SECNO;
+       sbi->gc_mode = GC_NORMAL;
        sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
        sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
        sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;