diff options
author | Jeff Layton <jlayton@kernel.org> | 2023-08-07 15:38:39 -0400 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-08-11 09:04:57 +0200 |
commit | 913e99287b98fd051ac1976140a2764a8ef9dfbf (patch) | |
tree | 98b256701a67886b61be340d4d5043ffcf22a31d /fs/xfs | |
parent | 51b0f3ebdbbf440b2d04f24cff2ad8b39d11842d (diff) | |
download | linux-stable-913e99287b98fd051ac1976140a2764a8ef9dfbf.tar.gz linux-stable-913e99287b98fd051ac1976140a2764a8ef9dfbf.tar.bz2 linux-stable-913e99287b98fd051ac1976140a2764a8ef9dfbf.zip |
fs: drop the timespec64 argument from update_time
Now that all of the update_time operations are prepared for it, we can
drop the timespec64 argument from the update_time operation. Do that and
remove it from some associated functions like inode_update_time and
inode_needs_update_time.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Message-Id: <20230807-mgctime-v7-8-d1dec143a704@kernel.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_iops.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index 549ad1fb4d65..1c1e6171209d 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -1029,7 +1029,6 @@ xfs_vn_setattr( STATIC int xfs_vn_update_time( struct inode *inode, - struct timespec64 *time, int flags) { struct xfs_inode *ip = XFS_I(inode); |