aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2013-04-21 20:19:43 -0400
committerTheodore Ts'o <tytso@mit.edu>2013-04-21 20:19:43 -0400
commitc5c72d814cf0f650010337c73638b25e6d14d2d4 (patch)
tree7e8121327fb54d8eb8ed999e0a5f56c2f4f73d2c /fs/ext4
parentf783f091e49ce4896e6b026af82d76e0537c6089 (diff)
ext4: fix online resizing for ext3-compat file systems
Commit fb0a387dcdc restricts block allocations for indirect-mapped files to block groups less than s_blockfile_groups. However, the online resizing code wasn't setting s_blockfile_groups, so the newly added block groups were not available for non-extent mapped files. Reported-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Cc: stable@vger.kernel.org
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/resize.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c
index e3498534a2c1..08d2312c0fd4 100644
--- a/fs/ext4/resize.c
+++ b/fs/ext4/resize.c
@@ -1341,6 +1341,8 @@ static void ext4_update_super(struct super_block *sb,
1341 1341
1342 /* Update the global fs size fields */ 1342 /* Update the global fs size fields */
1343 sbi->s_groups_count += flex_gd->count; 1343 sbi->s_groups_count += flex_gd->count;
1344 sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
1345 (EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));
1344 1346
1345 /* Update the reserved block counts only once the new group is 1347 /* Update the reserved block counts only once the new group is
1346 * active. */ 1348 * active. */