Commit 487e34fc authored by Jeff Layton's avatar Jeff Layton Committed by Christian Brauner

ntfs3: convert to simple_rename_timestamp

A rename potentially involves updating 4 different inode timestamps.
Convert to the new simple_rename_timestamp helper function.
Signed-off-by: default avatarJeff Layton <jlayton@kernel.org>
Reviewed-by: default avatarJan Kara <jack@suse.cz>
Message-Id: <20230705190309.579783-11-jlayton@kernel.org>
Signed-off-by: default avatarChristian Brauner <brauner@kernel.org>
parent d06cdfdd
...@@ -324,14 +324,11 @@ static int ntfs_rename(struct mnt_idmap *idmap, struct inode *dir, ...@@ -324,14 +324,11 @@ static int ntfs_rename(struct mnt_idmap *idmap, struct inode *dir,
/* Restore after failed rename failed too. */ /* Restore after failed rename failed too. */
_ntfs_bad_inode(inode); _ntfs_bad_inode(inode);
} else if (!err) { } else if (!err) {
inode->i_ctime = dir->i_ctime = dir->i_mtime = simple_rename_timestamp(dir, dentry, new_dir, new_dentry);
current_time(dir);
mark_inode_dirty(inode); mark_inode_dirty(inode);
mark_inode_dirty(dir); mark_inode_dirty(dir);
if (dir != new_dir) { if (dir != new_dir)
new_dir->i_mtime = new_dir->i_ctime = dir->i_ctime;
mark_inode_dirty(new_dir); mark_inode_dirty(new_dir);
}
if (IS_DIRSYNC(dir)) if (IS_DIRSYNC(dir))
ntfs_sync_inode(dir); ntfs_sync_inode(dir);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment