diff options
author | Jeff Layton <jlayton@kernel.org> | 2023-10-04 14:51:49 -0400 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-10-18 13:26:15 +0200 |
commit | 9304a99eff43d2eff3b20c8bf9eb7a57dca14bb9 (patch) | |
tree | 3fff9c804e239e9099e56eb21d1a9b5bc6ccaf30 /arch | |
parent | 4c46a0a1164132917527adce5082d18d8339a9cd (diff) | |
download | linux-stable-9304a99eff43d2eff3b20c8bf9eb7a57dca14bb9.tar.gz linux-stable-9304a99eff43d2eff3b20c8bf9eb7a57dca14bb9.tar.bz2 linux-stable-9304a99eff43d2eff3b20c8bf9eb7a57dca14bb9.zip |
hypfs: convert to new timestamp accessors
Convert to using the new inode timestamp accessor functions.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Link: https://lore.kernel.org/r/20231004185347.80880-2-jlayton@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/s390/hypfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/hypfs/inode.c b/arch/s390/hypfs/inode.c index ada83149932f..858beaf4a8cb 100644 --- a/arch/s390/hypfs/inode.c +++ b/arch/s390/hypfs/inode.c @@ -53,7 +53,7 @@ static void hypfs_update_update(struct super_block *sb) struct inode *inode = d_inode(sb_info->update_file); sb_info->last_update = ktime_get_seconds(); - inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode); + simple_inode_init_ts(inode); } /* directory tree removal functions */ @@ -101,7 +101,7 @@ static struct inode *hypfs_make_inode(struct super_block *sb, umode_t mode) ret->i_mode = mode; ret->i_uid = hypfs_info->uid; ret->i_gid = hypfs_info->gid; - ret->i_atime = ret->i_mtime = inode_set_ctime_current(ret); + simple_inode_init_ts(ret); if (S_ISDIR(mode)) set_nlink(ret, 2); } |