From: Zhiguo Niu Date: Mon, 27 May 2024 11:12:37 +0000 (+0800) Subject: f2fs: fix to remove redundant SBI_NEED_FSCK flag set X-Git-Tag: v6.11-rc1~60^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6924c8b6fdf96db24edf8392c2dd00f79eeb8e4b;p=thirdparty%2Fkernel%2Flinux.git f2fs: fix to remove redundant SBI_NEED_FSCK flag set Subsequent f2fs_stop_checkpoint will set cp_err, so this SBI_NEED_FSCK flag set action is invalid. Signed-off-by: Zhiguo Niu Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index 20e2f989013b7..ef667fec9a125 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c @@ -1752,7 +1752,6 @@ static int do_garbage_collect(struct f2fs_sb_info *sbi, if (type != GET_SUM_TYPE((&sum->footer))) { f2fs_err(sbi, "Inconsistent segment (%u) type [%d, %d] in SSA and SIT", segno, type, GET_SUM_TYPE((&sum->footer))); - set_sbi_flag(sbi, SBI_NEED_FSCK); f2fs_stop_checkpoint(sbi, false, STOP_CP_REASON_CORRUPTED_SUMMARY); goto skip;