diff options
author | Jeff Layton <jlayton@kernel.org> | 2023-10-04 14:52:46 -0400 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-10-18 14:08:26 +0200 |
commit | 200d942170a8e7b94d7cdc871f9a067917bc3f4a (patch) | |
tree | 73a1e9ffd66b1d15bff37493eeef92a5b4ff81a7 /fs/proc/base.c | |
parent | 4ddbd0f1fe8c9edd2be5465d681834e9ab2f4dd9 (diff) | |
download | linux-stable-200d942170a8e7b94d7cdc871f9a067917bc3f4a.tar.gz linux-stable-200d942170a8e7b94d7cdc871f9a067917bc3f4a.tar.bz2 linux-stable-200d942170a8e7b94d7cdc871f9a067917bc3f4a.zip |
proc: convert to new timestamp accessors
Convert to using the new inode timestamp accessor functions.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Link: https://lore.kernel.org/r/20231004185347.80880-59-jlayton@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/proc/base.c')
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index ffd54617c354..c69925364090 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -1902,7 +1902,7 @@ struct inode *proc_pid_make_inode(struct super_block *sb, ei = PROC_I(inode); inode->i_mode = mode; inode->i_ino = get_next_ino(); - inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode); + simple_inode_init_ts(inode); inode->i_op = &proc_def_inode_operations; /* |