From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2DB943E5EC2 for ; Mon, 15 Jun 2026 13:08:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781528913; cv=none; b=qpiPeKNhNyWAIFxvkYKvo9ER+RYeNCVI3JJ9Pj+UWeu+0aUUElOHa+lBpW5NyT7vEzOmhKRXJcqSfAbjhEpLuIDHNWUZ0iGtlb30Ih1KdScM5w+tujRQ7Y/H0PqkbXphAPEQ1XRGP1iawb2cROlUK6I6gDZZ7yEAiYTfuSfdI4A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781528913; c=relaxed/simple; bh=2WQkv6Fta3/S3zn1Hm2+PLtjkadLcbdL1VysLdyDklI=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=NzbIGB+gon1Vv4FM64bdF7uScJpbn4WVealpoPnJ5yltX5xnY67aOu7l2Q+q0/hgJOpQYkTm7ZEn/Z7lBlmD+O6HA3GnagpTvEQNfxh4B4wS3uFK5kwXjwo+3Yo9Pdtf0xCWdFNUq3Uro0wvVrVgZtbfbmppfuoI4zayMfJQQsw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fBUOLKXL; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fBUOLKXL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D9F941F000E9; Mon, 15 Jun 2026 13:08:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1781528911; bh=Raq7VNbdBNt9d4hB9e6oc4gfaUfydpebI3wex4IWKUI=; h=From:To:Cc:Subject:Date; b=fBUOLKXLl3qHlydK12wL105ju8FAnoFrKX1QA59SVgctTxQKHV80VxMfo+pnnxsjM mKrI+23yVF1JyJ46py+lAQmyj1XKj7OZl04AYptyrBdAywqQg4NmgTUGUhz7LkxwHD 8ppfmrMl2rb0uXYNfr+pLQFELtvvG/HM8i3yQhDvhCJQUA22Ixm/dB08p9L2m4uXrf a+aC+PxK/lCGz/gO/WwgM4eWlc6V3wZH+jI0KRxKy/NlacHElCaJuXX7bIq/h4byA2 uqV94yQvW+oRba5GZDmfqXYI3Avlh5FQ7tWv6Jc3CCNRfcXgN9N+rIMW+hsm5cX5z/ 5DiGgCI/PzUNg== From: Chao Yu To: jaegeuk@kernel.org Cc: linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Chao Yu Subject: [PATCH 1/6] f2fs: fix wrong description in printed log Date: Mon, 15 Jun 2026 21:08:17 +0800 Message-ID: <20260615130822.2576088-1-chao@kernel.org> X-Mailer: git-send-email 2.54.0.1136.gdb2ca164c4-goog Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This patch fixes wrong description in printed log: "SSA and SIT" -> "SIT and SSA" Signed-off-by: Chao Yu --- fs/f2fs/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index 69e0a867219d..0e537508df20 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c @@ -1897,7 +1897,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))); -- 2.49.0