diff options
author | Darrick J. Wong <djwong@us.ibm.com> | 2011-08-31 12:00:51 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-11 09:43:52 -0800 |
commit | 523d90b566448dd9ca31b0a93b3cf9f601118d5c (patch) | |
tree | 636aec7ac6d37d7869d41cda9c06c51741d0bc5b /fs | |
parent | 76e72d11365ce08b2800ac70b7abc0d46ee9727d (diff) |
ext4: ext4_mkdir should dirty dir_block with newly created directory inode
commit f9287c1f2d329f4d78a3bbc9cf0db0ebae6f146a upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 46df9a984bb..6e7779c7532 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -1863,7 +1863,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); |