diff options
author | Jeff Layton <jlayton@kernel.org> | 2023-10-04 20:52:13 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-10-18 13:26:20 +0200 |
commit | d21b3c321f1620de2c51143cf048719aee979037 (patch) | |
tree | 76526560e041f99691fadf18c377d3ef69ec41f5 /fs/debugfs | |
parent | cramfs: convert to new timestamp accessors (diff) | |
download | linux-d21b3c321f1620de2c51143cf048719aee979037.tar.xz linux-d21b3c321f1620de2c51143cf048719aee979037.zip |
debugfs: 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-26-jlayton@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/debugfs')
-rw-r--r-- | fs/debugfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 83e57e9f9fa0..5d41765e0c77 100644 --- a/fs/debugfs/inode.c +++ b/fs/debugfs/inode.c @@ -72,7 +72,7 @@ static struct inode *debugfs_get_inode(struct super_block *sb) struct inode *inode = new_inode(sb); if (inode) { inode->i_ino = get_next_ino(); - inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode); + simple_inode_init_ts(inode); } return inode; } |