]> Pileus Git - ~andy/linux/commitdiff
nfsd4: fix, consolidate client_has_state
authorJ. Bruce Fields <bfields@redhat.com>
Tue, 29 May 2012 20:37:44 +0000 (16:37 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Fri, 1 Jun 2012 00:30:39 +0000 (20:30 -0400)
Whoops: first, I reimplemented the already-existing has_resources
without noticing; second, I got the test backwards.  I did pick a better
name, though.  Combine the two....

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

index c91e26d84f06771a17df03c9bdfbd22d01778fbf..0a6901d453499e09cc2201fd6da909d5bed3ffb9 100644 (file)
@@ -1537,9 +1537,9 @@ static bool client_has_state(struct nfs4_client *clp)
         *
         * Also note we should probably be using this in 4.0 case too.
         */
-       return list_empty(&clp->cl_openowners)
-               && list_empty(&clp->cl_delegations)
-               && list_empty(&clp->cl_sessions);
+       return !list_empty(&clp->cl_openowners)
+               || !list_empty(&clp->cl_delegations)
+               || !list_empty(&clp->cl_sessions);
 }
 
 __be32
@@ -2069,13 +2069,6 @@ out:
        return status;
 }
 
-static inline bool has_resources(struct nfs4_client *clp)
-{
-       return !list_empty(&clp->cl_openowners)
-               || !list_empty(&clp->cl_delegations)
-               || !list_empty(&clp->cl_sessions);
-}
-
 __be32
 nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_destroy_clientid *dc)
 {
@@ -2089,7 +2082,7 @@ nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *csta
        if (conf) {
                clp = conf;
 
-               if (!is_client_expired(conf) && has_resources(conf)) {
+               if (!is_client_expired(conf) && client_has_state(conf)) {
                        status = nfserr_clientid_busy;
                        goto out;
                }