Skip to content

Commit

Permalink
ext4: fix online resizing for ext3-compat file systems
Browse files Browse the repository at this point in the history
Commit fb0a387 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
  • Loading branch information
Theodore Ts'o committed Apr 22, 2013
1 parent f783f09 commit c5c72d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fs/ext4/resize.c
Original file line number Diff line number Diff line change
Expand Up @@ -1341,6 +1341,8 @@ static void ext4_update_super(struct super_block *sb,

/* Update the global fs size fields */
sbi->s_groups_count += flex_gd->count;
sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
(EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));

/* Update the reserved block counts only once the new group is
* active. */
Expand Down

0 comments on commit c5c72d8

Please sign in to comment.