* [PATCH] ext4: fix bad checksum after online resize
@ 2022-11-04 8:35 Baokun Li
2022-11-04 15:58 ` Darrick J. Wong
2022-11-07 13:03 ` Jan Kara
0 siblings, 2 replies; 3+ messages in thread
From: Baokun Li @ 2022-11-04 8:35 UTC (permalink / raw)
To: linux-ext4
Cc: tytso, adilger.kernel, jack, ritesh.list, linux-kernel, yi.zhang,
yukuai3, libaokun1
When online resizing is performed twice consecutively, the error message
"Superblock checksum does not match superblock" is displayed for the
second time. Here's the reproducer:
mkfs.ext4 -F /dev/sdb 100M
mount /dev/sdb /tmp/test
resize2fs /dev/sdb 5G
resize2fs /dev/sdb 6G
To solve this issue, we moved the update of the checksum after the
es->s_overhead_clusters is updated.
Fixes: 026d0d27c488 ("ext4: reduce computation of overhead during resize")
Fixes: de394a86658f ("ext4: update s_overhead_clusters in the superblock during an on-line resize")
Signed-off-by: Baokun Li <libaokun1@huawei.com>
---
fs/ext4/resize.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c
index 6dfe9ccae0c5..32fbfc173571 100644
--- a/fs/ext4/resize.c
+++ b/fs/ext4/resize.c
@@ -1471,8 +1471,6 @@ static void ext4_update_super(struct super_block *sb,
* active. */
ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
reserved_blocks);
- ext4_superblock_csum_set(sb);
- unlock_buffer(sbi->s_sbh);
/* Update the free space counts */
percpu_counter_add(&sbi->s_freeclusters_counter,
@@ -1508,6 +1506,8 @@ static void ext4_update_super(struct super_block *sb,
ext4_calculate_overhead(sb);
es->s_overhead_clusters = cpu_to_le32(sbi->s_overhead);
+ ext4_superblock_csum_set(sb);
+ unlock_buffer(sbi->s_sbh);
if (test_opt(sb, DEBUG))
printk(KERN_DEBUG "EXT4-fs: added group %u:"
"%llu blocks(%llu free %llu reserved)\n", flex_gd->count,
--
2.31.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] ext4: fix bad checksum after online resize
2022-11-04 8:35 [PATCH] ext4: fix bad checksum after online resize Baokun Li
@ 2022-11-04 15:58 ` Darrick J. Wong
2022-11-07 13:03 ` Jan Kara
1 sibling, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2022-11-04 15:58 UTC (permalink / raw)
To: Baokun Li
Cc: linux-ext4, tytso, adilger.kernel, jack, ritesh.list,
linux-kernel, yi.zhang, yukuai3
On Fri, Nov 04, 2022 at 04:35:53PM +0800, Baokun Li wrote:
> When online resizing is performed twice consecutively, the error message
> "Superblock checksum does not match superblock" is displayed for the
> second time. Here's the reproducer:
>
> mkfs.ext4 -F /dev/sdb 100M
> mount /dev/sdb /tmp/test
> resize2fs /dev/sdb 5G
> resize2fs /dev/sdb 6G
>
> To solve this issue, we moved the update of the checksum after the
> es->s_overhead_clusters is updated.
>
> Fixes: 026d0d27c488 ("ext4: reduce computation of overhead during resize")
> Fixes: de394a86658f ("ext4: update s_overhead_clusters in the superblock during an on-line resize")
> Signed-off-by: Baokun Li <libaokun1@huawei.com>
Yep, that looks correct. Sort of a pity that the checksum computation
isn't quite as automatic as it is in other filesystems, but that's my
fault... :/
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
--D
> ---
> fs/ext4/resize.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c
> index 6dfe9ccae0c5..32fbfc173571 100644
> --- a/fs/ext4/resize.c
> +++ b/fs/ext4/resize.c
> @@ -1471,8 +1471,6 @@ static void ext4_update_super(struct super_block *sb,
> * active. */
> ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
> reserved_blocks);
> - ext4_superblock_csum_set(sb);
> - unlock_buffer(sbi->s_sbh);
>
> /* Update the free space counts */
> percpu_counter_add(&sbi->s_freeclusters_counter,
> @@ -1508,6 +1506,8 @@ static void ext4_update_super(struct super_block *sb,
> ext4_calculate_overhead(sb);
> es->s_overhead_clusters = cpu_to_le32(sbi->s_overhead);
>
> + ext4_superblock_csum_set(sb);
> + unlock_buffer(sbi->s_sbh);
> if (test_opt(sb, DEBUG))
> printk(KERN_DEBUG "EXT4-fs: added group %u:"
> "%llu blocks(%llu free %llu reserved)\n", flex_gd->count,
> --
> 2.31.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] ext4: fix bad checksum after online resize
2022-11-04 8:35 [PATCH] ext4: fix bad checksum after online resize Baokun Li
2022-11-04 15:58 ` Darrick J. Wong
@ 2022-11-07 13:03 ` Jan Kara
1 sibling, 0 replies; 3+ messages in thread
From: Jan Kara @ 2022-11-07 13:03 UTC (permalink / raw)
To: Baokun Li
Cc: linux-ext4, tytso, adilger.kernel, jack, ritesh.list,
linux-kernel, yi.zhang, yukuai3
On Fri 04-11-22 16:35:53, Baokun Li wrote:
> When online resizing is performed twice consecutively, the error message
> "Superblock checksum does not match superblock" is displayed for the
> second time. Here's the reproducer:
>
> mkfs.ext4 -F /dev/sdb 100M
> mount /dev/sdb /tmp/test
> resize2fs /dev/sdb 5G
> resize2fs /dev/sdb 6G
>
> To solve this issue, we moved the update of the checksum after the
> es->s_overhead_clusters is updated.
>
> Fixes: 026d0d27c488 ("ext4: reduce computation of overhead during resize")
> Fixes: de394a86658f ("ext4: update s_overhead_clusters in the superblock during an on-line resize")
> Signed-off-by: Baokun Li <libaokun1@huawei.com>
Indeed. Good catch! Feel free to add:
Reviewed-by: Jan Kara <jack@suse.cz>
Honza
> ---
> fs/ext4/resize.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c
> index 6dfe9ccae0c5..32fbfc173571 100644
> --- a/fs/ext4/resize.c
> +++ b/fs/ext4/resize.c
> @@ -1471,8 +1471,6 @@ static void ext4_update_super(struct super_block *sb,
> * active. */
> ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
> reserved_blocks);
> - ext4_superblock_csum_set(sb);
> - unlock_buffer(sbi->s_sbh);
>
> /* Update the free space counts */
> percpu_counter_add(&sbi->s_freeclusters_counter,
> @@ -1508,6 +1506,8 @@ static void ext4_update_super(struct super_block *sb,
> ext4_calculate_overhead(sb);
> es->s_overhead_clusters = cpu_to_le32(sbi->s_overhead);
>
> + ext4_superblock_csum_set(sb);
> + unlock_buffer(sbi->s_sbh);
> if (test_opt(sb, DEBUG))
> printk(KERN_DEBUG "EXT4-fs: added group %u:"
> "%llu blocks(%llu free %llu reserved)\n", flex_gd->count,
> --
> 2.31.1
>
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-07 13:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-04 8:35 [PATCH] ext4: fix bad checksum after online resize Baokun Li
2022-11-04 15:58 ` Darrick J. Wong
2022-11-07 13:03 ` Jan Kara
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox