OpenVZ Forum


Home » Mailing lists » Devel » [PATCH] SUNRPC: skip dead but not buried clients on PipeFS events
[PATCH] SUNRPC: skip dead but not buried clients on PipeFS events [message #45937] Thu, 19 April 2012 10:57 Go to previous message
Stanislav Kinsbursky is currently offline  Stanislav Kinsbursky
Messages: 683
Registered: October 2011
Senior Member
These clients can't be safely dereferenced if their counter in 0.

Signee-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>

Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>

---
net/sunrpc/clnt.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 6797246..591994d 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)
if (((event == RPC_PIPEFS_MOUNT) && clnt->cl_dentry) ||
((event == RPC_PIPEFS_UMOUNT) && !clnt->cl_dentry))
continue;
- atomic_inc(&clnt->cl_count);
+ if (atomic_inc_return(&clnt->cl_count) == 1)
+ continue;
spin_unlock(&sn->rpc_client_lock);
return clnt;
}
 
Read Message
Read Message
Read Message
Read Message
Previous Topic: [PATCH] LockD: call per-net shutdown on every global shutdown call
Next Topic: [PATCH 1/3] SUNRPC: skip clients with program without PipeFS entries
Goto Forum:
  


Current Time: Thu Jul 24 02:12:09 GMT 2025

Total time taken to generate the page: 0.13885 seconds