]> git.baikalelectronics.ru Git - kernel.git/commit
cifs: destage dirty pages before re-reading them for cache=none
authorRonnie Sahlberg <lsahlber@redhat.com>
Tue, 20 Sep 2022 04:32:02 +0000 (14:32 +1000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Oct 2022 11:22:11 +0000 (13:22 +0200)
commit106d359a8f7626969d9a5392a0f36e14627f5c4b
tree012c436881f69ee0911794b9bccc6aac5ebf3c1c
parentf23e16cbd4a0cf3f4af3743686e482d378e53a3e
cifs: destage dirty pages before re-reading them for cache=none

commit cd2a022c8a2d441cf2cafa5df3fd2ef8975a6fb9 upstream.

This is the opposite case of kernel bugzilla 216301.
If we mmap a file using cache=none and then proceed to update the mmapped
area these updates are not reflected in a later pread() of that part of the
file.
To fix this we must first destage any dirty pages in the range before
we allow the pread() to proceed.

Cc: stable@vger.kernel.org
Reviewed-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
Reviewed-by: Enzo Matsumiya <ematsumiya@suse.de>
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/cifs/file.c