summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorOlga Kornievskaia <olga.kornievskaia@gmail.com>2020-06-24 13:54:08 -0400
committerSasha Levin <sashal@kernel.org>2020-06-30 15:37:12 -0400
commit4d35ca872ac3c7464f062231f6a55444dbbcc106 (patch)
treeac9cc91dba90b9a094830f905c95c1497f6aab72 /net
parent02917bef8f1b08cde7027446177c5cb288456f99 (diff)
downloadlinux-stable-4d35ca872ac3c7464f062231f6a55444dbbcc106.tar.gz
linux-stable-4d35ca872ac3c7464f062231f6a55444dbbcc106.tar.bz2
linux-stable-4d35ca872ac3c7464f062231f6a55444dbbcc106.zip
NFSv4 fix CLOSE not waiting for direct IO compeletion
commit d03727b248d0dae6199569a8d7b629a681154633 upstream. Figuring out the root case for the REMOVE/CLOSE race and suggesting the solution was done by Neil Brown. Currently what happens is that direct IO calls hold a reference on the open context which is decremented as an asynchronous task in the nfs_direct_complete(). Before reference is decremented, control is returned to the application which is free to close the file. When close is being processed, it decrements its reference on the open_context but since directIO still holds one, it doesn't sent a close on the wire. It returns control to the application which is free to do other operations. For instance, it can delete a file. Direct IO is finally releasing its reference and triggering an asynchronous close. Which races with the REMOVE. On the server, REMOVE can be processed before the CLOSE, failing the REMOVE with EACCES as the file is still opened. Signed-off-by: Olga Kornievskaia <kolga@netapp.com> Suggested-by: Neil Brown <neilb@suse.com> CC: stable@vger.kernel.org Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
0 files changed, 0 insertions, 0 deletions