ext3: Fix fs corruption when make_indexed_dir() fails
commit61485c2e416f12932cfd9423ad0641b975b4de65
authorJan Kara <jack@suse.cz>
Wed, 27 Apr 2011 16:20:44 +0000 (27 18:20 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Jun 2011 00:31:50 +0000 (3 09:31 +0900)
tree0ca16af101fdef166ab96cd8b234da7bfcbd1f27
parent91180a0401c2348d3c488613dbe39ae2e306ec20
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