mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
kernfs: 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-47-jlayton@kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
dc34d1330c
commit
2a45ac1559
@ -151,7 +151,7 @@ ssize_t kernfs_iop_listxattr(struct dentry *dentry, char *buf, size_t size)
|
||||
static inline void set_default_inode_attr(struct inode *inode, umode_t mode)
|
||||
{
|
||||
inode->i_mode = mode;
|
||||
inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode);
|
||||
simple_inode_init_ts(inode);
|
||||
}
|
||||
|
||||
static inline void set_inode_attr(struct inode *inode,
|
||||
@ -159,8 +159,8 @@ static inline void set_inode_attr(struct inode *inode,
|
||||
{
|
||||
inode->i_uid = attrs->ia_uid;
|
||||
inode->i_gid = attrs->ia_gid;
|
||||
inode->i_atime = attrs->ia_atime;
|
||||
inode->i_mtime = attrs->ia_mtime;
|
||||
inode_set_atime_to_ts(inode, attrs->ia_atime);
|
||||
inode_set_mtime_to_ts(inode, attrs->ia_mtime);
|
||||
inode_set_ctime_to_ts(inode, attrs->ia_ctime);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user