mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
fs: cifs: Fix atime update check
Commit9b9c5bea0b
("cifs: do not return atime less than mtime") indicates that in cifs, if atime is less than mtime, some apps will break. Therefore, it introduce a function to compare this two variables in two places where atime is updated. If atime is less than mtime, update it to mtime. However, the patch was handled incorrectly, resulting in atime and mtime being exactly equal. A previous commit69738cfdfa
("fs: cifs: Fix atime update check vs mtime") fixed one place and forgot to fix another. Fix it. Fixes:9b9c5bea0b
("cifs: do not return atime less than mtime") Cc: stable@vger.kernel.org Signed-off-by: Zizhi Wo <wozizhi@huawei.com> Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
parent
567320c46a
commit
01fe654f78
@ -4671,7 +4671,7 @@ static int cifs_readpage_worker(struct file *file, struct page *page,
|
||||
/* we do not want atime to be less than mtime, it broke some apps */
|
||||
atime = inode_set_atime_to_ts(inode, current_time(inode));
|
||||
mtime = inode_get_mtime(inode);
|
||||
if (timespec64_compare(&atime, &mtime))
|
||||
if (timespec64_compare(&atime, &mtime) < 0)
|
||||
inode_set_atime_to_ts(inode, inode_get_mtime(inode));
|
||||
|
||||
if (PAGE_SIZE > rc)
|
||||
|
Loading…
Reference in New Issue
Block a user