diff options
author | Jeff Layton <[email protected]> | 2023-10-04 14:53:10 -0400 |
---|---|---|
committer | Christian Brauner <[email protected]> | 2023-10-18 14:08:31 +0200 |
commit | 26d1283179533847a840da7ab5b2e3773c1a9f99 (patch) | |
tree | 0d39925cca701b6de04ecc6b74a66f5b9bda9752 | |
parent | 7563c93494b74772d4220a73895eb8a91ffda6cb (diff) |
selinux: convert to new timestamp accessors
Convert to using the new inode timestamp accessor functions.
Acked-by: Paul Moore <[email protected]>
Signed-off-by: Jeff Layton <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r-- | security/selinux/selinuxfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c index 6fa640263216..6c596ae7fef9 100644 --- a/security/selinux/selinuxfs.c +++ b/security/selinux/selinuxfs.c @@ -1198,7 +1198,7 @@ static struct inode *sel_make_inode(struct super_block *sb, umode_t mode) if (ret) { ret->i_mode = mode; - ret->i_atime = ret->i_mtime = inode_set_ctime_current(ret); + simple_inode_init_ts(ret); } return ret; } |