diff options
author | Jeff Layton <jlayton@kernel.org> | 2023-07-05 21:00:49 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-07-13 10:28:03 +0200 |
commit | b9170a28839a59fc1314a194712c06109e0ca0ab (patch) | |
tree | 1304da7cc9d9b33a70573b9324f088fc2ee706a1 /fs/afs/dynroot.c | |
parent | affs: convert to ctime accessor functions (diff) | |
download | linux-b9170a28839a59fc1314a194712c06109e0ca0ab.tar.xz linux-b9170a28839a59fc1314a194712c06109e0ca0ab.zip |
afs: convert to ctime accessor functions
In later patches, we're going to change how the inode's ctime field is
used. Switch to using accessor functions instead of raw accesses of
inode->i_ctime.
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Message-Id: <20230705190309.579783-22-jlayton@kernel.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/afs/dynroot.c')
-rw-r--r-- | fs/afs/dynroot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/dynroot.c b/fs/afs/dynroot.c index d7d9402ff718..95bcbd7654d1 100644 --- a/fs/afs/dynroot.c +++ b/fs/afs/dynroot.c @@ -88,7 +88,7 @@ struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root) set_nlink(inode, 2); inode->i_uid = GLOBAL_ROOT_UID; inode->i_gid = GLOBAL_ROOT_GID; - inode->i_ctime = inode->i_atime = inode->i_mtime = current_time(inode); + inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode); inode->i_blocks = 0; inode->i_generation = 0; |