summaryrefslogtreecommitdiff
path: root/fs/ext4
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2008-04-30 02:02:11 (GMT)
committerTheodore Ts'o <tytso@mit.edu>2008-04-30 02:02:11 (GMT)
commit53b7e9f6807c1274eee19201396b4c2b5f721553 (patch)
tree4d6dc303a01d14d106c48a2e7ae97451bdb74467 /fs/ext4
parent329d291f50d53f77d15769051f3eb494a9fd54b7 (diff)
downloadlinux-fsl-qoriq-53b7e9f6807c1274eee19201396b4c2b5f721553.tar.xz
ext4: Fix update of mtime and ctime on rename
The patch below makes ext4 update mtime and ctime of the directory into which we move file even if the directory entry already exists. Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Mingming Cao <cmm@us.ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/namei.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 02cdaec..7fc1bc1 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -2354,6 +2354,9 @@ static int ext4_rename (struct inode * old_dir, struct dentry *old_dentry,
EXT4_FEATURE_INCOMPAT_FILETYPE))
new_de->file_type = old_de->file_type;
new_dir->i_version++;
+ new_dir->i_ctime = new_dir->i_mtime =
+ ext4_current_time(new_dir);
+ ext4_mark_inode_dirty(handle, new_dir);
BUFFER_TRACE(new_bh, "call ext4_journal_dirty_metadata");
ext4_journal_dirty_metadata(handle, new_bh);
brelse(new_bh);