From: Trond Myklebust Date: Wed, 25 Mar 2015 17:19:42 +0000 (-0400) Subject: NFSv4: Return delegations synchronously in evict_inode X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5fcdfacc01f3a3415b75acb172cd75c9fe1cbda5;p=linux.git NFSv4: Return delegations synchronously in evict_inode Kinglong Mee reports that asynchronous delegations are being killed by the call to rpc_shutdown_client() when unmounting. This can lead to state leakage on the server until the client lease expires. Reported-by: Kinglong Mee Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/delegation.c b/fs/nfs/delegation.c index a6ad688658803..08c6244487501 100644 --- a/fs/nfs/delegation.c +++ b/fs/nfs/delegation.c @@ -514,7 +514,7 @@ void nfs_inode_return_delegation_noreclaim(struct inode *inode) delegation = nfs_inode_detach_delegation(inode); if (delegation != NULL) - nfs_do_return_delegation(inode, delegation, 0); + nfs_do_return_delegation(inode, delegation, 1); } /**