[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200804300552.m3U5qJ4W030309@imap1.linux-foundation.org>
Date: Tue, 29 Apr 2008 22:52:19 -0700
From: akpm@...ux-foundation.org
To: jack@...e.cz, linux-ext4@...r.kernel.org, viro@...iv.linux.org.uk,
mm-commits@...r.kernel.org
Subject: - ext4-fix-update-of-mtime-and-ctime-on-rename.patch removed from -mm tree
The patch titled
ext4: fix update of mtime and ctime on rename
has been removed from the -mm tree. Its filename was
ext4-fix-update-of-mtime-and-ctime-on-rename.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: ext4: fix update of mtime and ctime on rename
From: Jan Kara <jack@...e.cz>
Make 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@...e.cz>
Cc: Al Viro <viro@...iv.linux.org.uk>
Cc: <linux-ext4@...r.kernel.org>
Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
---
fs/ext4/namei.c | 3 +++
1 file changed, 3 insertions(+)
diff -puN fs/ext4/namei.c~ext4-fix-update-of-mtime-and-ctime-on-rename fs/ext4/namei.c
--- a/fs/ext4/namei.c~ext4-fix-update-of-mtime-and-ctime-on-rename
+++ a/fs/ext4/namei.c
@@ -2354,6 +2354,9 @@ static int ext4_rename (struct inode * o
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);
_
Patches currently in -mm which might be from jack@...e.cz are
origin.patch
isofs-fix-access-to-unallocated-memory-when-reading-corrupted-filesystem.patch
ext4-fix-mount-messages-when-quota-disabled.patch
quota-le_add_cpu-conversion.patch
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists