mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
befs: 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-19-jlayton@kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
2c11fd980a
commit
3aa4155c1e
@ -360,11 +360,11 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino)
|
||||
* for indexing purposes. (PFD, page 54)
|
||||
*/
|
||||
|
||||
inode->i_mtime.tv_sec =
|
||||
fs64_to_cpu(sb, raw_inode->last_modified_time) >> 16;
|
||||
inode->i_mtime.tv_nsec = 0; /* lower 16 bits are not a time */
|
||||
inode_set_ctime_to_ts(inode, inode->i_mtime);
|
||||
inode->i_atime = inode->i_mtime;
|
||||
inode_set_mtime(inode,
|
||||
fs64_to_cpu(sb, raw_inode->last_modified_time) >> 16,
|
||||
0);/* lower 16 bits are not a time */
|
||||
inode_set_ctime_to_ts(inode, inode_get_mtime(inode));
|
||||
inode_set_atime_to_ts(inode, inode_get_mtime(inode));
|
||||
|
||||
befs_ino->i_inode_num = fsrun_to_cpu(sb, raw_inode->inode_num);
|
||||
befs_ino->i_parent = fsrun_to_cpu(sb, raw_inode->parent);
|
||||
|
Loading…
Reference in New Issue
Block a user