projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d65c52
)
NFS: Don't leak RPC clients in NFSv4 secinfo negotiation
author
Trond Myklebust
<Trond.Myklebust@netapp.com>
Sat, 26 Mar 2011 06:24:35 +0000
(
02:24
-0400)
committer
Trond Myklebust
<Trond.Myklebust@netapp.com>
Sun, 27 Mar 2011 15:48:17 +0000
(17:48 +0200)
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/namespace.c
patch
|
blob
|
history
diff --git
a/fs/nfs/namespace.c
b/fs/nfs/namespace.c
index
ad92bf7
..
9166fcb
100644
(file)
--- 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;
}