diff options
author | Jeff Layton <jlayton@kernel.org> | 2023-07-05 15:01:49 -0400 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-07-24 10:30:07 +0200 |
commit | e359147f01606e17d74df96cfeb0027f540f5e97 (patch) | |
tree | 2e47f0ff4df5c29479c223ca2ceb4e117fa5ade2 /include/linux/fs_stack.h | |
parent | f74207d84dab31ed7e36f530281c556c9815cbc5 (diff) |
linux: 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.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Message-Id: <20230705190309.579783-82-jlayton@kernel.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'include/linux/fs_stack.h')
-rw-r--r-- | include/linux/fs_stack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs_stack.h b/include/linux/fs_stack.h index 54210a42c30d..010d39d0dc1c 100644 --- a/include/linux/fs_stack.h +++ b/include/linux/fs_stack.h @@ -24,7 +24,7 @@ static inline void fsstack_copy_attr_times(struct inode *dest, { dest->i_atime = src->i_atime; dest->i_mtime = src->i_mtime; - dest->i_ctime = src->i_ctime; + inode_set_ctime_to_ts(dest, inode_get_ctime(src)); } #endif /* _LINUX_FS_STACK_H */ |