From: Jeff Layton Date: Mon, 7 Aug 2023 19:38:37 +0000 (-0400) Subject: ubifs: have ubifs_update_time use inode_update_timestamps X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=97ebfdb7ad089d5213f6c75fdc48173fe0f14439;p=linux.git 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 Reviewed-by: Jan Kara Message-Id: <20230807-mgctime-v7-6-d1dec143a704@kernel.org> Signed-off-by: Christian Brauner --- diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c index df9086b19cd07..81d44a1b24141 100644 --- a/fs/ubifs/file.c +++ b/fs/ubifs/file.c @@ -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);