nfsd: clean up and reorganize release_lockowner
authorJeff Layton <jlayton@primarydata.com>
Wed, 30 Jul 2014 01:34:37 +0000 (21:34 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Thu, 31 Jul 2014 18:20:27 +0000 (14:20 -0400)
Do more within the main loop, and simplify the function a bit. Also,
there's no need to take a stateowner reference unless we're going to call
release_lockowner.

Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/nfs4state.c

index 4af4e5eff491374d99c16230bd1431a3ed189763..cd7d7df03afaa6cb0ac4bb3a8e5a58a044624d41 100644 (file)
@@ -5424,8 +5424,8 @@ nfsd4_release_lockowner(struct svc_rqst *rqstp,
                        struct nfsd4_release_lockowner *rlockowner)
 {
        clientid_t *clid = &rlockowner->rl_clientid;
-       struct nfs4_stateowner *sop = NULL, *tmp;
-       struct nfs4_lockowner *lo;
+       struct nfs4_stateowner *sop;
+       struct nfs4_lockowner *lo = NULL;
        struct nfs4_ol_stateid *stp;
        struct xdr_netobj *owner = &rlockowner->rl_owner;
        unsigned int hashval = ownerstr_hashval(owner);
@@ -5442,45 +5442,32 @@ nfsd4_release_lockowner(struct svc_rqst *rqstp,
        if (status)
                goto out;
 
-       status = nfserr_locks_held;
-
        clp = cstate->clp;
        /* Find the matching lock stateowner */
        spin_lock(&clp->cl_lock);
-       list_for_each_entry(tmp, &clp->cl_ownerstr_hashtbl[hashval],
+       list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval],
                            so_strhash) {
-               if (tmp->so_is_open_owner)
-                       continue;
-               if (same_owner_str(tmp, owner)) {
-                       sop = tmp;
-                       atomic_inc(&sop->so_count);
-                       break;
-               }
-       }
 
-       /* No matching owner found, maybe a replay? Just declare victory... */
-       if (!sop) {
-               spin_unlock(&clp->cl_lock);
-               status = nfs_ok;
-               goto out;
-       }
+               if (sop->so_is_open_owner || !same_owner_str(sop, owner))
+                       continue;
 
-       lo = lockowner(sop);
-       /* see if there are still any locks associated with it */
-       list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) {
-               if (check_for_locks(stp->st_stid.sc_file, lo)) {
-                       spin_unlock(&clp->cl_lock);
-                       goto out;
+               /* 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);
+                               goto out;
+                       }
                }
+
+               atomic_inc(&sop->so_count);
+               break;
        }
        spin_unlock(&clp->cl_lock);
-
-       status = nfs_ok;
-       sop = NULL;
-       release_lockowner(lo);
+       if (lo)
+               release_lockowner(lo);
 out:
-       if (sop)
-               nfs4_put_stateowner(sop);
        nfs4_unlock_state();
        return status;
 }
This page took 0.028341 seconds and 5 git commands to generate.