nfsd: don't destroy client if mark_client_expired_locked fails
authorJeff Layton <jlayton@primarydata.com>
Wed, 30 Jul 2014 12:27:13 +0000 (08:27 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Fri, 1 Aug 2014 20:28:26 +0000 (16:28 -0400)
If it fails, it means that the client is in use and so destroying it
would be bad. Currently, the client_mutex prevents this from happening
but once we remove it, we won't be able to do this.

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

index 56999cb..43e66fc 100644 (file)
@@ -2496,8 +2496,10 @@ nfsd4_create_session(struct svc_rqst *rqstp,
                old = find_confirmed_client_by_name(&unconf->cl_name, nn);
                if (old) {
                        status = mark_client_expired_locked(old);
-                       if (status)
+                       if (status) {
+                               old = NULL;
                                goto out_free_conn;
+                       }
                }
                move_to_confirmed(unconf);
                conf = unconf;
@@ -3041,8 +3043,10 @@ nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
                old = find_confirmed_client_by_name(&unconf->cl_name, nn);
                if (old) {
                        status = mark_client_expired_locked(old);
-                       if (status)
+                       if (status) {
+                               old = NULL;
                                goto out;
+                       }
                }
                move_to_confirmed(unconf);
                conf = unconf;