mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
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>
This commit is contained in:
parent
f873e9d6db
commit
b9170a2883
@ -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;
|
||||
|
||||
|
@ -90,7 +90,7 @@ static int afs_inode_init_from_status(struct afs_operation *op,
|
||||
vnode->status = *status;
|
||||
|
||||
t = status->mtime_client;
|
||||
inode->i_ctime = t;
|
||||
inode_set_ctime_to_ts(inode, t);
|
||||
inode->i_mtime = t;
|
||||
inode->i_atime = t;
|
||||
inode->i_flags |= S_NOATIME;
|
||||
@ -206,7 +206,7 @@ static void afs_apply_status(struct afs_operation *op,
|
||||
t = status->mtime_client;
|
||||
inode->i_mtime = t;
|
||||
if (vp->update_ctime)
|
||||
inode->i_ctime = op->ctime;
|
||||
inode_set_ctime_to_ts(inode, op->ctime);
|
||||
|
||||
if (vnode->status.data_version != status->data_version)
|
||||
data_changed = true;
|
||||
@ -252,7 +252,7 @@ static void afs_apply_status(struct afs_operation *op,
|
||||
vnode->netfs.remote_i_size = status->size;
|
||||
if (change_size) {
|
||||
afs_set_i_size(vnode, status->size);
|
||||
inode->i_ctime = t;
|
||||
inode_set_ctime_to_ts(inode, t);
|
||||
inode->i_atime = t;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user