ext4: fix online resizing when the # of block groups is constant
authorTheodore Ts'o <tytso@mit.edu>
Wed, 19 Sep 2012 04:55:56 +0000 (00:55 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 19 Sep 2012 04:55:56 +0000 (00:55 -0400)
commit59e31c156a24d483bbd2ea07d4dc96043a55b6bc
treeadb76b9f52a862c4a844be737c7f16c4a8dbaa81
parentc9b92530a723ac5ef8e352885a1862b18f31b2f5
ext4: fix online resizing when the # of block groups is constant

Commit 1c6bd7173d66b3 introduced a regression where an online resize
operation which did not change the number of block groups would fail,
i.e:

mke2fs -t /dev/vdc 60000
mount /dev/vdc
resize2fs /dev/vdc 60001

This was due to a bug in the logic regarding when to try converting
the filesystem to use meta_bg.

Also fix up a number of other minor issues with the online resizing
code: (a) Fix a sparse warning; (b) only check to make sure the device
is large enough once, instead of multiple times through the resize
loop.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/resize.c