aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2011-05-03 11:05:55 -0400
committerTheodore Ts'o <tytso@mit.edu>2011-05-03 11:05:55 -0400
commit7ad8e4e6ae2a7c95445ee1715b1714106fb95037 (patch)
treef3cb6f1d364e2a1f9036216edfcbdcb94e4d489f /fs/ext4
parent74e4e6db38918620bdf8a46e94982ead2b228d43 (diff)
ext4: Fix fs corruption when make_indexed_dir() fails
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: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/namei.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 67fd0b025858..cadf04b924aa 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -1414,9 +1414,19 @@ static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1414 frame->bh = bh; 1414 frame->bh = bh;
1415 bh = bh2; 1415 bh = bh2;
1416 de = do_split(handle,dir, &bh, frame, &hinfo, &retval); 1416 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1417 dx_release (frames); 1417 if (!de) {
1418 if (!(de)) 1418 /*
1419 * Even if the block split failed, we have to properly write
1420 * out all the changes we did so far. Otherwise we can end up
1421 * with corrupted filesystem.
1422 */
1423 ext4_mark_inode_dirty(handle, dir);
1424 ext4_handle_dirty_metadata(handle, dir, frame->bh);
1425 ext4_handle_dirty_metadata(handle, dir, bh);
1426 dx_release(frames);
1419 return retval; 1427 return retval;
1428 }
1429 dx_release(frames);
1420 1430
1421 retval = add_dirent_to_buf(handle, dentry, inode, de, bh); 1431 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1422 brelse(bh); 1432 brelse(bh);