From: Trond Myklebust Date: Fri, 18 Apr 2014 18:43:57 +0000 (-0400) Subject: NFSd: call rpc_destroy_wait_queue() from free_client() X-Git-Tag: v3.2.60~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1c2ce496cc680efb0086b65b303bdb6919f2aea;p=thirdparty%2Fkernel%2Fstable.git NFSd: call rpc_destroy_wait_queue() from free_client() commit 4cb57e3032d4e4bf5e97780e9907da7282b02b0c upstream. Mainly to ensure that we don't leave any hanging timers. Signed-off-by: Trond Myklebust Signed-off-by: J. Bruce Fields [bwh: Backported to 3.2: adjust context] Signed-off-by: Ben Hutchings --- diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 10eecccf7c78c..71ff73ddbbc5c 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -1011,6 +1011,7 @@ free_client(struct nfs4_client *clp) list_del(&ses->se_perclnt); nfsd4_put_session(ses); } + rpc_destroy_wait_queue(&clp->cl_cb_waitq); if (clp->cl_cred.cr_group_info) put_group_info(clp->cl_cred.cr_group_info); kfree(clp->cl_principal);