summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-01-22 15:29:27 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-01-25 14:33:39 -0800
commit10d75984495f7fe62152c3b0dbfa3f0a6b739c9b (patch)
tree41d4f528c44888177337d0bfb86177184138f642 /fs
parent0646c260c4b4b827b3e73ebe146cd06a4c11b09d (diff)
downloadlinux-stable-10d75984495f7fe62152c3b0dbfa3f0a6b739c9b.tar.gz
linux-stable-10d75984495f7fe62152c3b0dbfa3f0a6b739c9b.tar.bz2
linux-stable-10d75984495f7fe62152c3b0dbfa3f0a6b739c9b.zip
Revert "NFSD: Fix possible sleep during nfsd4_release_lockowner()"
This reverts commit ef481b262bba4f454351eec43f024fec942c2d4c which is commit ce3c4ad7f4ce5db7b4f08a1e237d8dd94b39180b upstream. The maintainers ask it to be removed in this branch. Cc: Dai Ngo <dai.ngo@oracle.com> Cc: Chuck Lever <chuck.lever@oracle.com> Cc: Neil Brown <neilb@suse.de> Cc: Jeff Layton <jlayton@kernel.org> Link: https://lore.kernel.org/linux-nfs/3162C5BC-8E7C-4A9A-815C-09297B56FA17@oracle.com/T/#t Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfsd/nfs4state.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index e958181b7361..5c241e510888 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -6392,12 +6392,16 @@ nfsd4_release_lockowner(struct svc_rqst *rqstp,
if (sop->so_is_open_owner || !same_owner_str(sop, owner))
continue;
- if (atomic_read(&sop->so_count) != 1) {
- spin_unlock(&clp->cl_lock);
- return nfserr_locks_held;
+ /* see if there are still any locks associated with it */
+ lo = lockowner(sop);
+ list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
+ if (check_for_locks(stp->st_stid.sc_file, lo)) {
+ status = nfserr_locks_held;
+ spin_unlock(&clp->cl_lock);
+ return status;
+ }
}
- lo = lockowner(sop);
nfs4_get_stateowner(sop);
break;
}