ext4: fix corruption when online resizing a fs with 1K block size
authorMaarten ter Huurne <maarten@treewalker.org>
Mon, 1 Jul 2013 12:12:08 +0000 (08:12 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 21 Jul 2013 00:16:06 +0000 (17:16 -0700)
commit1d9595ffd53baf1e9313d14d6670eb32370617a9
treeef384b8521c03d0e1445506eb8978f86896291a4
parentc12c4b5612d4410f99a1b204c7dc2e6fbbc906f6
ext4: fix corruption when online resizing a fs with 1K block size

commit 6ca792edc13c409e8d4eb9001e048264c6a2eb64 upstream.

Subtracting the number of the first data block places the superblock
backups one block too early, corrupting the file system. When the block
size is larger than 1K, the first data block is 0, so the subtraction
has no effect and no corruption occurs.

Signed-off-by: Maarten ter Huurne <maarten@treewalker.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/resize.c