[Devel] [PATCH RHEL7 COMMIT] ms/ext4: Actually request zeroing of inode table after grow
Konstantin Khorenko
khorenko at virtuozzo.com
Thu Dec 26 14:43:52 MSK 2019
The commit is pushed to "branch-rh7-3.10.0-1062.7.1.vz7.130.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git
after rh7-3.10.0-1062.7.1.vz7.130.5
------>
commit 694a574048ccb0101a017ef95fefca6d6b39b76b
Author: Kirill Tkhai <ktkhai at virtuozzo.com>
Date: Mon Apr 22 18:13:57 2019 +0300
ms/ext4: Actually request zeroing of inode table after grow
[This is reviewed and goes to ms]
It is never possible, that number of block groups decreases,
since only online grow is supported.
But after a growing occured, we have to zero inode tables
for just created new block groups.
Signed-off-by: Kirill Tkhai <ktkhai at virtuozzo.com>
Reviewed-by: Jan Kara <jack at suse.cz>
---
fs/ext4/ioctl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c
index 5f55938ae9cce..5c48b00dd8e3f 100644
--- a/fs/ext4/ioctl.c
+++ b/fs/ext4/ioctl.c
@@ -644,7 +644,7 @@ long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
if (err == 0)
err = err2;
mnt_drop_write_file(filp);
- if (!err && (o_group > EXT4_SB(sb)->s_groups_count) &&
+ if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
ext4_has_group_desc_csum(sb) &&
test_opt(sb, INIT_INODE_TABLE))
err = ext4_register_li_request(sb, o_group);
More information about the Devel
mailing list