mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
adfs: 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-14-jlayton@kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
d0242a3a61
commit
ca9649e9bd
@ -242,6 +242,7 @@ struct inode *
|
||||
adfs_iget(struct super_block *sb, struct object_info *obj)
|
||||
{
|
||||
struct inode *inode;
|
||||
struct timespec64 ts;
|
||||
|
||||
inode = new_inode(sb);
|
||||
if (!inode)
|
||||
@ -268,9 +269,10 @@ adfs_iget(struct super_block *sb, struct object_info *obj)
|
||||
ADFS_I(inode)->attr = obj->attr;
|
||||
|
||||
inode->i_mode = adfs_atts2mode(sb, inode);
|
||||
adfs_adfs2unix_time(&inode->i_mtime, inode);
|
||||
inode->i_atime = inode->i_mtime;
|
||||
inode_set_ctime_to_ts(inode, inode->i_mtime);
|
||||
adfs_adfs2unix_time(&ts, inode);
|
||||
inode_set_atime_to_ts(inode, ts);
|
||||
inode_set_mtime_to_ts(inode, ts);
|
||||
inode_set_ctime_to_ts(inode, ts);
|
||||
|
||||
if (S_ISDIR(inode->i_mode)) {
|
||||
inode->i_op = &adfs_dir_inode_operations;
|
||||
@ -321,7 +323,8 @@ adfs_notify_change(struct mnt_idmap *idmap, struct dentry *dentry,
|
||||
|
||||
if (ia_valid & ATTR_MTIME && adfs_inode_is_stamped(inode)) {
|
||||
adfs_unix2adfs_time(inode, &attr->ia_mtime);
|
||||
adfs_adfs2unix_time(&inode->i_mtime, inode);
|
||||
adfs_adfs2unix_time(&attr->ia_mtime, inode);
|
||||
inode_set_mtime_to_ts(inode, attr->ia_mtime);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -329,7 +332,7 @@ adfs_notify_change(struct mnt_idmap *idmap, struct dentry *dentry,
|
||||
* have the ability to represent them in our filesystem?
|
||||
*/
|
||||
if (ia_valid & ATTR_ATIME)
|
||||
inode->i_atime = attr->ia_atime;
|
||||
inode_set_atime_to_ts(inode, attr->ia_atime);
|
||||
if (ia_valid & ATTR_CTIME)
|
||||
inode_set_ctime_to_ts(inode, attr->ia_ctime);
|
||||
if (ia_valid & ATTR_MODE) {
|
||||
|
Loading…
Reference in New Issue
Block a user