]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
fs: cifs: Delete usage of timespec64_trunc
authorDeepa Dinamani <deepa.kernel@gmail.com>
Tue, 3 Dec 2019 05:19:41 +0000 (21:19 -0800)
committerAl Viro <viro@zeniv.linux.org.uk>
Mon, 9 Dec 2019 00:10:52 +0000 (19:10 -0500)
commit918c900987f2ea59c3de793b744bff5f7d691ac2
treec9537e229a0ee71ad5dd50380a8d6f33f65dc71f
parent97acf83de493ece462b7edccf920f0dbfb857f2b
fs: cifs: Delete usage of timespec64_trunc

timestamp_truncate() is the replacement api for
timespec64_trunc. timestamp_truncate() additionally clamps
timestamps to make sure the timestamps lie within the
permitted range for the filesystem.

Truncate the timestamps in the struct cifs_attr at the
site of assignment to inode times. This
helps us use the right fs api timestamp_trucate() to
perform the truncation.

Also update the ktime_get_* api to match the one used in
current_time(). This allows for timestamps to be updated
the same way always.

Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
Cc: stfrench@microsoft.com
Cc: linux-cifs@vger.kernel.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/cifs/inode.c