mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
ubifs: have ubifs_update_time use inode_update_timestamps
In later patches, we're going to drop the "now" parameter from the update_time operation. Prepare ubifs for this, by having it use the new inode_update_timestamps helper. Signed-off-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: Jan Kara <jack@suse.cz> Message-Id: <20230807-mgctime-v7-6-d1dec143a704@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
bb7cc0a62e
commit
97ebfdb7ad
@ -1397,13 +1397,7 @@ int ubifs_update_time(struct inode *inode, struct timespec64 *time,
|
||||
return err;
|
||||
|
||||
mutex_lock(&ui->ui_mutex);
|
||||
if (flags & S_ATIME)
|
||||
inode->i_atime = *time;
|
||||
if (flags & S_CTIME)
|
||||
inode_set_ctime_to_ts(inode, *time);
|
||||
if (flags & S_MTIME)
|
||||
inode->i_mtime = *time;
|
||||
|
||||
inode_update_timestamps(inode, flags);
|
||||
release = ui->dirty;
|
||||
__mark_inode_dirty(inode, I_DIRTY_SYNC);
|
||||
mutex_unlock(&ui->ui_mutex);
|
||||
|
Loading…
Reference in New Issue
Block a user