From nobody Mon Apr 13 18:32:27 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A741FC4332F for ; Tue, 15 Nov 2022 11:55:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232690AbiKOLza (ORCPT ); Tue, 15 Nov 2022 06:55:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49808 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229842AbiKOLzQ (ORCPT ); Tue, 15 Nov 2022 06:55:16 -0500 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7D30213DF0; Tue, 15 Nov 2022 03:55:15 -0800 (PST) Received: from dggpeml500021.china.huawei.com (unknown [172.30.72.57]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4NBPft1jCgzJnlC; Tue, 15 Nov 2022 19:52:06 +0800 (CST) Received: from huawei.com (10.175.127.227) by dggpeml500021.china.huawei.com (7.185.36.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Tue, 15 Nov 2022 19:55:13 +0800 From: Baokun Li To: CC: , , , , , , , Subject: [PATCH 2/3] ext4: fix corrupt backup group descriptors after online resize Date: Tue, 15 Nov 2022 20:16:37 +0800 Message-ID: <20221115121638.192349-3-libaokun1@huawei.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20221115121638.192349-1-libaokun1@huawei.com> References: <20221115121638.192349-1-libaokun1@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.175.127.227] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To dggpeml500021.china.huawei.com (7.185.36.21) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" In commit 9a8c5b0d0615 ("ext4: update the backup superblock's at the end of the online resize"), it is assumed that update_backups() only updates backup superblocks, so each b_data is treated as a backupsuper block to update its s_block_group_nr and s_checksum. However, update_backups() also updates the backup group descriptors, which causes the backup group descriptors to be corrupted. The above commit fixes the problem of invalid checksum of the backup superblock. The root cause of this problem is that the checksum of ext4_update_super() is not set correctly. This problem has been fixed in the previous patch ("ext4: fix bad checksum after online resize"). Therefore, roll back some modifications in the above commit. Fixes: 9a8c5b0d0615 ("ext4: update the backup superblock's at the end of th= e online resize") Signed-off-by: Baokun Li --- fs/ext4/resize.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index cb99b410c9fa..32fbfc173571 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -1158,7 +1158,6 @@ static void update_backups(struct super_block *sb, se= ctor_t blk_off, char *data, while (group < sbi->s_groups_count) { struct buffer_head *bh; ext4_fsblk_t backup_block; - struct ext4_super_block *es; =20 /* Out of journal space, and can't get more - abort - so sad */ err =3D ext4_resize_ensure_credits_batch(handle, 1); @@ -1187,10 +1186,6 @@ static void update_backups(struct super_block *sb, s= ector_t blk_off, char *data, memcpy(bh->b_data, data, size); if (rest) memset(bh->b_data + size, 0, rest); - es =3D (struct ext4_super_block *) bh->b_data; - es->s_block_group_nr =3D cpu_to_le16(group); - if (ext4_has_metadata_csum(sb)) - es->s_checksum =3D ext4_superblock_csum(sb, es); set_buffer_uptodate(bh); unlock_buffer(bh); err =3D ext4_handle_dirty_metadata(handle, NULL, bh); --=20 2.31.1