aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/nfs/idmap.c2
-rw-r--r--net/sunrpc/auth_gss/auth_gss.c2
-rw-r--r--net/sunrpc/clnt.c3
-rw-r--r--net/sunrpc/rpc_pipe.c4
4 files changed, 9 insertions, 2 deletions
diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c
index 821edd30333b..32c95a0d93f3 100644
--- a/fs/nfs/idmap.c
+++ b/fs/nfs/idmap.c
@@ -132,6 +132,8 @@ nfs_idmap_delete(struct nfs4_client *clp)
132 132
133 if (!idmap) 133 if (!idmap)
134 return; 134 return;
135 dput(idmap->idmap_dentry);
136 idmap->idmap_dentry = NULL;
135 rpc_unlink(idmap->idmap_path); 137 rpc_unlink(idmap->idmap_path);
136 clp->cl_idmap = NULL; 138 clp->cl_idmap = NULL;
137 kfree(idmap); 139 kfree(idmap);
diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c
index bb46efd92e57..900ef31f5a0e 100644
--- a/net/sunrpc/auth_gss/auth_gss.c
+++ b/net/sunrpc/auth_gss/auth_gss.c
@@ -721,6 +721,8 @@ gss_destroy(struct rpc_auth *auth)
721 721
722 gss_auth = container_of(auth, struct gss_auth, rpc_auth); 722 gss_auth = container_of(auth, struct gss_auth, rpc_auth);
723 rpc_unlink(gss_auth->path); 723 rpc_unlink(gss_auth->path);
724 dput(gss_auth->dentry);
725 gss_auth->dentry = NULL;
724 gss_mech_put(gss_auth->mech); 726 gss_mech_put(gss_auth->mech);
725 727
726 rpcauth_free_credcache(auth); 728 rpcauth_free_credcache(auth);
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index d78479782045..a6d7c332dd49 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -240,6 +240,7 @@ rpc_clone_client(struct rpc_clnt *clnt)
240 new->cl_autobind = 0; 240 new->cl_autobind = 0;
241 new->cl_oneshot = 0; 241 new->cl_oneshot = 0;
242 new->cl_dead = 0; 242 new->cl_dead = 0;
243 dget(new->cl_dentry);
243 rpc_init_rtt(&new->cl_rtt_default, clnt->cl_xprt->timeout.to_initval); 244 rpc_init_rtt(&new->cl_rtt_default, clnt->cl_xprt->timeout.to_initval);
244 if (new->cl_auth) 245 if (new->cl_auth)
245 atomic_inc(&new->cl_auth->au_count); 246 atomic_inc(&new->cl_auth->au_count);
@@ -314,6 +315,8 @@ rpc_destroy_client(struct rpc_clnt *clnt)
314 if (clnt->cl_server != clnt->cl_inline_name) 315 if (clnt->cl_server != clnt->cl_inline_name)
315 kfree(clnt->cl_server); 316 kfree(clnt->cl_server);
316out_free: 317out_free:
318 if (clnt->cl_dentry)
319 dput(clnt->cl_dentry);
317 kfree(clnt); 320 kfree(clnt);
318 return 0; 321 return 0;
319} 322}
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c
index 567abbe25bc8..72b22172f0af 100644
--- a/net/sunrpc/rpc_pipe.c
+++ b/net/sunrpc/rpc_pipe.c
@@ -669,7 +669,7 @@ rpc_mkdir(char *path, struct rpc_clnt *rpc_client)
669out: 669out:
670 mutex_unlock(&dir->i_mutex); 670 mutex_unlock(&dir->i_mutex);
671 rpc_release_path(&nd); 671 rpc_release_path(&nd);
672 return dentry; 672 return dget(dentry);
673err_depopulate: 673err_depopulate:
674 rpc_depopulate(dentry); 674 rpc_depopulate(dentry);
675 __rpc_rmdir(dir, dentry); 675 __rpc_rmdir(dir, dentry);
@@ -733,7 +733,7 @@ rpc_mkpipe(char *path, void *private, struct rpc_pipe_ops *ops, int flags)
733out: 733out:
734 mutex_unlock(&dir->i_mutex); 734 mutex_unlock(&dir->i_mutex);
735 rpc_release_path(&nd); 735 rpc_release_path(&nd);
736 return dentry; 736 return dget(dentry);
737err_dput: 737err_dput:
738 dput(dentry); 738 dput(dentry);
739 dentry = ERR_PTR(-ENOMEM); 739 dentry = ERR_PTR(-ENOMEM);