]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
openpromfs: convert to new timestamp accessors
authorJeff Layton <jlayton@kernel.org>
Wed, 4 Oct 2023 18:52:43 +0000 (14:52 -0400)
committerChristian Brauner <brauner@kernel.org>
Wed, 18 Oct 2023 12:08:25 +0000 (14:08 +0200)
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-56-jlayton@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/openpromfs/inode.c

index b2457cb97fa0081b9281a37c394decc2c4fe2a95..c4b65a6d41cc345c83e4729d3f9a76cad66391e3 100644 (file)
@@ -237,7 +237,7 @@ found:
        if (IS_ERR(inode))
                return ERR_CAST(inode);
        if (inode->i_state & I_NEW) {
-               inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode);
+               simple_inode_init_ts(inode);
                ent_oi = OP_I(inode);
                ent_oi->type = ent_type;
                ent_oi->u = ent_data;
@@ -387,7 +387,7 @@ static int openprom_fill_super(struct super_block *s, struct fs_context *fc)
                goto out_no_root;
        }
 
-       root_inode->i_mtime = root_inode->i_atime = inode_set_ctime_current(root_inode);
+       simple_inode_init_ts(root_inode);
        root_inode->i_op = &openprom_inode_operations;
        root_inode->i_fop = &openprom_operations;
        root_inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;