diff options
| author | Jeff Layton <jlayton@kernel.org> | 2023-10-04 14:52:55 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-05-02 16:32:41 +0200 |
| commit | 331b6339c4853ae7dda1a7ae6bbd06d4678304e0 (patch) | |
| tree | a6b417f4401a340b3757d534c55a9ca82d7da493 /fs/squashfs | |
| parent | ab65b0cf0324b6dae89cfc9c7d9625e591b24e43 (diff) | |
| download | linux-331b6339c4853ae7dda1a7ae6bbd06d4678304e0.tar.gz linux-331b6339c4853ae7dda1a7ae6bbd06d4678304e0.tar.bz2 linux-331b6339c4853ae7dda1a7ae6bbd06d4678304e0.zip | |
squashfs: convert to new timestamp accessors
[ Upstream commit a1f13ed8c74893ed31d41c5bca156a623b0e9a86 ]
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-68-jlayton@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
Stable-dep-of: 9253c54e01b6 ("Squashfs: check the inode number is not the invalid value of zero")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'fs/squashfs')
| -rw-r--r-- | fs/squashfs/inode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/squashfs/inode.c b/fs/squashfs/inode.c index c6e626b00546..aa3411354e66 100644 --- a/fs/squashfs/inode.c +++ b/fs/squashfs/inode.c @@ -59,9 +59,9 @@ static int squashfs_new_inode(struct super_block *sb, struct inode *inode, i_uid_write(inode, i_uid); i_gid_write(inode, i_gid); inode->i_ino = le32_to_cpu(sqsh_ino->inode_number); - inode->i_mtime.tv_sec = le32_to_cpu(sqsh_ino->mtime); - inode->i_atime.tv_sec = inode->i_mtime.tv_sec; - inode_set_ctime(inode, inode->i_mtime.tv_sec, 0); + inode_set_mtime(inode, le32_to_cpu(sqsh_ino->mtime), 0); + inode_set_atime(inode, inode_get_mtime_sec(inode), 0); + inode_set_ctime(inode, inode_get_mtime_sec(inode), 0); inode->i_mode = le16_to_cpu(sqsh_ino->mode); inode->i_size = 0; |
