aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@primarydata.com>2014-07-30 08:27:27 -0400
committerJ. Bruce Fields <bfields@redhat.com>2014-08-05 10:55:12 -0400
commit51f5e78355db2e9b4d5d9093f83be3567178d236 (patch)
treec9bad341d4b8394622d868034da0efeb27b7199f
parente7d5dc19ce9800b86dd9e41ff36cc418e9da1fce (diff)
nfsd: Remove nfs4_lock_state(): nfsd4_release_lockowner
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r--fs/nfsd/nfs4state.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 712d7e75e7dd..0f9e8426b2dd 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -5577,11 +5577,9 @@ nfsd4_release_lockowner(struct svc_rqst *rqstp,
5577 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n", 5577 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
5578 clid->cl_boot, clid->cl_id); 5578 clid->cl_boot, clid->cl_id);
5579 5579
5580 nfs4_lock_state();
5581
5582 status = lookup_clientid(clid, cstate, nn); 5580 status = lookup_clientid(clid, cstate, nn);
5583 if (status) 5581 if (status)
5584 goto out; 5582 return status;
5585 5583
5586 clp = cstate->clp; 5584 clp = cstate->clp;
5587 /* Find the matching lock stateowner */ 5585 /* Find the matching lock stateowner */
@@ -5598,7 +5596,7 @@ nfsd4_release_lockowner(struct svc_rqst *rqstp,
5598 if (check_for_locks(stp->st_stid.sc_file, lo)) { 5596 if (check_for_locks(stp->st_stid.sc_file, lo)) {
5599 status = nfserr_locks_held; 5597 status = nfserr_locks_held;
5600 spin_unlock(&clp->cl_lock); 5598 spin_unlock(&clp->cl_lock);
5601 goto out; 5599 return status;
5602 } 5600 }
5603 } 5601 }
5604 5602
@@ -5608,8 +5606,6 @@ nfsd4_release_lockowner(struct svc_rqst *rqstp,
5608 spin_unlock(&clp->cl_lock); 5606 spin_unlock(&clp->cl_lock);
5609 if (lo) 5607 if (lo)
5610 release_lockowner(lo); 5608 release_lockowner(lo);
5611out:
5612 nfs4_unlock_state();
5613 return status; 5609 return status;
5614} 5610}
5615 5611