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)
committerSteve Conklin <sconklin@canonical.com>
Fri, 15 Jul 2011 17:20:54 +0000 (12:20 -0500)
commit1e93e95ab9667bc9247f5ffe8d21b48d23dbfc1f
tree2b1136f986daf9dc416043f67e30449970d27dad
parent6f3b5e78ca67323ae010f03685fb4a61a0662547
ext3: Fix fs corruption when make_indexed_dir() fails

BugLink: http://bugs.launchpad.net/bugs/793702

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>
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
fs/ext3/namei.c