]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
NFSv42: Fix pagecache invalidation after COPY/CLONE
authorBenjamin Coddington <bcodding@redhat.com>
Tue, 16 Nov 2021 15:48:13 +0000 (10:48 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Dec 2021 08:01:08 +0000 (09:01 +0100)
commitaad716bd144a7896b73c563edd730c7c3dd905d3
tree48cef76986a3abbfe00c5fbf7f1ab933c82f2422
parent57899c4e26bf5a02b9b405267a1812f26b9ccce5
NFSv42: Fix pagecache invalidation after COPY/CLONE

commit 3f015d89a47cd8855cd92f71fff770095bd885a1 upstream.

The mechanism in use to allow the client to see the results of COPY/CLONE
is to drop those pages from the pagecache.  This forces the client to read
those pages once more from the server.  However, truncate_pagecache_range()
zeros out partial pages instead of dropping them.  Let us instead use
invalidate_inode_pages2_range() with full-page offsets to ensure the client
properly sees the results of COPY/CLONE operations.

Cc: <stable@vger.kernel.org> # v4.7+
Fixes: 2e72448b07dc ("NFS: Add COPY nfs operation")
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/nfs/nfs42proc.c