]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ext3: Fix fs corruption when make_indexed_dir() fails
authorJan Kara <jack@suse.cz>
Wed, 27 Apr 2011 16:20:44 +0000 (18:20 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Jun 2011 01:33:52 +0000 (10:33 +0900)
commitd5994d14b3697d22117b2e3c91317c4bff87803a
tree1baf739c646158202510e9390151237840696ed6
parent811dfd3f3d8304443b9dc5a74a953f1b907e6129
ext3: Fix fs corruption when make_indexed_dir() fails

commit 86c4f6d85595cd7da635dc6985d27bfa43b1ae10 upstream.

When make_indexed_dir() fails (e.g. because of ENOSPC) after it has allocated
block for index tree root, we did not properly mark all changed buffers dirty.
This lead to only some of these buffers being written out and thus effectively
corrupting the directory.

Fix the issue by marking all changed data dirty even in the error failure case.

Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/ext3/namei.c