diff options
author | 2023-08-27 01:47:04 +0800 | |
---|---|---|
committer | 2023-10-05 22:32:14 -0400 | |
commit | e44fc921b84ff08a9e2fb827a146fa4021d016f3 (patch) | |
tree | 3127e02f130add15353e78545b76421d270b3515 | |
parent | ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks (diff) | |
download | wireguard-linux-e44fc921b84ff08a9e2fb827a146fa4021d016f3.tar.xz wireguard-linux-e44fc921b84ff08a9e2fb827a146fa4021d016f3.zip |
ext4: fix typo in setup_new_flex_group_blocks
grop -> group
Signed-off-by: Kemeng Shi <shikemeng@huaweicloud.com>
Reviewed-by: Theodore Ts'o <tytso@mit.edu>
Link: https://lore.kernel.org/r/20230826174712.4059355-6-shikemeng@huaweicloud.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r-- | fs/ext4/resize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 667381180b26..5e4856d68c4a 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -609,7 +609,7 @@ static int setup_new_flex_group_blocks(struct super_block *sb, } handle_itb: - /* Initialize group tables of the grop @group */ + /* Initialize group tables of the group @group */ if (!(bg_flags[i] & EXT4_BG_INODE_ZEROED)) goto handle_bb; |