From: Chao Yu Date: Mon, 15 Jun 2026 13:08:17 +0000 (+0800) Subject: f2fs: fix wrong description in printed log X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98fd20b9cf472d7e0518517ea9e587a9a2b8b311;p=thirdparty%2Flinux.git f2fs: fix wrong description in printed log This patch fixes wrong description in printed log: "SSA and SIT" -> "SIT and SSA" Signed-off-by: Chao Yu Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index 56a1c0547d769..ffaa7ba76a1bd 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c @@ -1893,7 +1893,7 @@ static int do_garbage_collect(struct f2fs_sb_info *sbi, sum = SUM_BLK_PAGE_ADDR(sbi, sum_folio, cur_segno); if (type != GET_SUM_TYPE(sum_footer(sbi, sum))) { f2fs_err(sbi, "Inconsistent segment (%u) type " - "[%d, %d] in SSA and SIT", + "[%d, %d] in SIT and SSA", cur_segno, type, GET_SUM_TYPE( sum_footer(sbi, sum)));