]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
nfsd4: destroy_clientid simplification
authorJ. Bruce Fields <bfields@redhat.com>
Thu, 14 Mar 2013 22:20:01 +0000 (18:20 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Wed, 3 Apr 2013 15:48:36 +0000 (11:48 -0400)
I'm not sure what the check for clientid expiry was meant to do here.

The check for a matching session is redundant given the previous check
for state: a client without state is, in particular, a client without
sessions.

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

index 84dfbdfd2d2c14526c90f04f4e87df8af407e6bd..905a5b5110473f19b4f47174fb66b735edcd457c 100644 (file)
@@ -2131,13 +2131,7 @@ nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *csta
        if (conf) {
                clp = conf;
 
-               if (!is_client_expired(conf) && client_has_state(conf)) {
-                       status = nfserr_clientid_busy;
-                       goto out;
-               }
-
-               /* rfc5661 18.50.3 */
-               if (cstate->session && conf == cstate->session->se_client) {
+               if (client_has_state(conf)) {
                        status = nfserr_clientid_busy;
                        goto out;
                }