From: Jeff Layton Date: Wed, 4 Oct 2023 18:52:13 +0000 (-0400) Subject: debugfs: convert to new timestamp accessors X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d21b3c321f1620de2c51143cf048719aee979037;p=linux.git debugfs: convert to new timestamp accessors Convert to using the new inode timestamp accessor functions. Signed-off-by: Jeff Layton Link: https://lore.kernel.org/r/20231004185347.80880-26-jlayton@kernel.org Signed-off-by: Christian Brauner --- diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c index 83e57e9f9fa03..5d41765e0c776 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; }