mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 18:26:42 +00:00
zonefs: convert to ctime accessor functions
In later patches, we're going to change how the inode's ctime field is used. Switch to using accessor functions instead of raw accesses of inode->i_ctime. Acked-by: Damien Le Moal <dlemoal@kernel.org> Signed-off-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: Jan Kara <jack@suse.cz> Message-Id: <20230705190309.579783-81-jlayton@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
a0a415e34b
commit
f74207d84d
@ -658,7 +658,8 @@ static struct inode *zonefs_get_file_inode(struct inode *dir,
|
||||
|
||||
inode->i_ino = ino;
|
||||
inode->i_mode = z->z_mode;
|
||||
inode->i_ctime = inode->i_mtime = inode->i_atime = dir->i_ctime;
|
||||
inode->i_mtime = inode->i_atime = 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;
|
||||
@ -694,7 +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_ctime = inode->i_mtime = inode->i_atime = root->i_ctime;
|
||||
inode->i_mtime = inode->i_atime = inode_set_ctime_to_ts(inode,
|
||||
inode_get_ctime(root));
|
||||
inode->i_private = &sbi->s_zgroup[ztype];
|
||||
set_nlink(inode, 2);
|
||||
|
||||
@ -1317,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_ctime = inode->i_mtime = inode->i_atime = current_time(inode);
|
||||
inode->i_mtime = inode->i_atime = inode_set_ctime_current(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