zonefs: 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-76-jlayton@kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
75d1e312bb
commit
8df379a340
@ -658,8 +658,8 @@ static struct inode *zonefs_get_file_inode(struct inode *dir,
|
||||
|
||||
inode->i_ino = ino;
|
||||
inode->i_mode = z->z_mode;
|
||||
inode->i_mtime = inode->i_atime = inode_set_ctime_to_ts(inode,
|
||||
inode_get_ctime(dir));
|
||||
inode_set_mtime_to_ts(inode,
|
||||
inode_set_atime_to_ts(inode, inode_set_ctime_to_ts(inode, inode_get_ctime(dir))));
|
||||
inode->i_uid = z->z_uid;
|
||||
inode->i_gid = z->z_gid;
|
||||
inode->i_size = z->z_wpoffset;
|
||||
@ -695,8 +695,8 @@ static struct inode *zonefs_get_zgroup_inode(struct super_block *sb,
|
||||
inode->i_ino = ino;
|
||||
inode_init_owner(&nop_mnt_idmap, inode, root, S_IFDIR | 0555);
|
||||
inode->i_size = sbi->s_zgroup[ztype].g_nr_zones;
|
||||
inode->i_mtime = inode->i_atime = inode_set_ctime_to_ts(inode,
|
||||
inode_get_ctime(root));
|
||||
inode_set_mtime_to_ts(inode,
|
||||
inode_set_atime_to_ts(inode, inode_set_ctime_to_ts(inode, inode_get_ctime(root))));
|
||||
inode->i_private = &sbi->s_zgroup[ztype];
|
||||
set_nlink(inode, 2);
|
||||
|
||||
@ -1319,7 +1319,7 @@ static int zonefs_fill_super(struct super_block *sb, void *data, int silent)
|
||||
|
||||
inode->i_ino = bdev_nr_zones(sb->s_bdev);
|
||||
inode->i_mode = S_IFDIR | 0555;
|
||||
inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode);
|
||||
simple_inode_init_ts(inode);
|
||||
inode->i_op = &zonefs_dir_inode_operations;
|
||||
inode->i_fop = &zonefs_dir_operations;
|
||||
inode->i_size = 2;
|
||||
|
Loading…
x
Reference in New Issue
Block a user