aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/namespace.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2011-03-26 02:24:35 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2011-03-27 17:48:17 +0200
commita0e7e3cf7932d6c77de0dc79a40dbaeb8060b544 (patch)
treefcc8ab44418afe356b683674fcd2c1589b7c6efa /fs/nfs/namespace.c
parentNFS: Fix a hang in the writeback path (diff)
downloadlinux-dev-a0e7e3cf7932d6c77de0dc79a40dbaeb8060b544.tar.xz
linux-dev-a0e7e3cf7932d6c77de0dc79a40dbaeb8060b544.zip
NFS: Don't leak RPC clients in NFSv4 secinfo negotiation
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/namespace.c')
-rw-r--r--fs/nfs/namespace.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/nfs/namespace.c b/fs/nfs/namespace.c
index ad92bf731ff5..9166fcb66da2 100644
--- a/fs/nfs/namespace.c
+++ b/fs/nfs/namespace.c
@@ -192,13 +192,15 @@ static rpc_authflavor_t nfs_lookup_with_sec(struct nfs_server *server, struct de
auth = rpcauth_create(flavor, clone);
if (!auth) {
flavor = -EIO;
- goto out;
+ goto out_shutdown;
}
err = server->nfs_client->rpc_ops->lookup(clone, parent->d_inode,
&path->dentry->d_name,
fh, fattr);
if (err < 0)
flavor = err;
+out_shutdown:
+ rpc_shutdown_client(clone);
out:
return flavor;
}