aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/posix_acl.c
diff options
context:
space:
mode:
authorJeff Layton <jlayton@kernel.org>2023-07-05 15:00:50 -0400
committerChristian Brauner <brauner@kernel.org>2023-07-13 10:28:04 +0200
commit2276e5ba8567f683c49a36ba885d0fe6abe2b45e (patch)
treef7e72f653deb4fefae34686d57393702e9c979b1 /fs/posix_acl.c
parentafs: convert to ctime accessor functions (diff)
downloadwireguard-linux-2276e5ba8567f683c49a36ba885d0fe6abe2b45e.tar.xz
wireguard-linux-2276e5ba8567f683c49a36ba885d0fe6abe2b45e.zip
fs: 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-23-jlayton@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/posix_acl.c')
-rw-r--r--fs/posix_acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/posix_acl.c b/fs/posix_acl.c
index 7fa1b738bbab..a05fe94970ce 100644
--- a/fs/posix_acl.c
+++ b/fs/posix_acl.c
@@ -1027,7 +1027,7 @@ int simple_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
return error;
}
- inode->i_ctime = current_time(inode);
+ inode_set_ctime_current(inode);
if (IS_I_VERSION(inode))
inode_inc_iversion(inode);
set_cached_acl(inode, type, acl);