aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/sunrpc/clnt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 67972462a543..d10ebc4310f7 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -218,7 +218,8 @@ static struct rpc_clnt *rpc_get_client_for_event(struct net *net, int event)
218 if (((event == RPC_PIPEFS_MOUNT) && clnt->cl_dentry) || 218 if (((event == RPC_PIPEFS_MOUNT) && clnt->cl_dentry) ||
219 ((event == RPC_PIPEFS_UMOUNT) && !clnt->cl_dentry)) 219 ((event == RPC_PIPEFS_UMOUNT) && !clnt->cl_dentry))
220 continue; 220 continue;
221 atomic_inc(&clnt->cl_count); 221 if (atomic_inc_not_zero(&clnt->cl_count) == 0)
222 continue;
222 spin_unlock(&sn->rpc_client_lock); 223 spin_unlock(&sn->rpc_client_lock);
223 return clnt; 224 return clnt;
224 } 225 }