summaryrefslogtreecommitdiffstats
path: root/fs/ext4/namei.c
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@us.ibm.com>2011-08-31 12:00:51 -0400
committerTheodore Ts'o <tytso@mit.edu>2011-08-31 12:00:51 -0400
commitf9287c1f2d329f4d78a3bbc9cf0db0ebae6f146a (patch)
treea7bb496f63a0b65e8edbdc72b596f64dd9ecc1b6 /fs/ext4/namei.c
parentbcaa992975041e40449be8c010c26192b8c8b409 (diff)
downloadlinux-f9287c1f2d329f4d78a3bbc9cf0db0ebae6f146a.tar.gz
linux-f9287c1f2d329f4d78a3bbc9cf0db0ebae6f146a.tar.xz
linux-f9287c1f2d329f4d78a3bbc9cf0db0ebae6f146a.zip
ext4: ext4_mkdir should dirty dir_block with newly created directory inode
ext4_mkdir calls ext4_handle_dirty_metadata with dir_block and the inode "dir". Unfortunately, dir_block belongs to the newly created directory (which is "inode"), not the parent directory (which is "dir"). Fix the incorrect association. Signed-off-by: Darrick J. Wong <djwong@us.ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Cc: stable@kernel.org
Diffstat (limited to 'fs/ext4/namei.c')
-rw-r--r--fs/ext4/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 09f930b7a785..f0abe4323136 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -1862,7 +1862,7 @@ retry:
ext4_set_de_type(dir->i_sb, de, S_IFDIR);
inode->i_nlink = 2;
BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
- err = ext4_handle_dirty_metadata(handle, dir, dir_block);
+ err = ext4_handle_dirty_metadata(handle, inode, dir_block);
if (err)
goto out_clear_inode;
err = ext4_mark_inode_dirty(handle, inode);