aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/auth_gss
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2007-06-24 15:55:26 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2007-07-10 23:40:36 -0400
commit31be5bf15f3dafffce110eb1afadccbf2e3067b4 (patch)
tree6e680e926d79a1c5fe6a5a726c3f16cb3b86adfa /net/sunrpc/auth_gss
parente092bdcd939416ef911090890096fe07d0281a5e (diff)
SUNRPC: Convert the credcache lookup code to use RCU
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/auth_gss')
-rw-r--r--net/sunrpc/auth_gss/auth_gss.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c
index 55c47ae0a258..068fa6dfb64e 100644
--- a/net/sunrpc/auth_gss/auth_gss.c
+++ b/net/sunrpc/auth_gss/auth_gss.c
@@ -694,15 +694,25 @@ gss_destroy_ctx(struct gss_cl_ctx *ctx)
694} 694}
695 695
696static void 696static void
697gss_destroy_cred(struct rpc_cred *rc) 697gss_free_cred(struct gss_cred *gss_cred)
698{ 698{
699 struct gss_cred *cred = container_of(rc, struct gss_cred, gc_base); 699 dprintk("RPC: gss_free_cred %p\n", gss_cred);
700 if (gss_cred->gc_ctx)
701 gss_put_ctx(gss_cred->gc_ctx);
702 kfree(gss_cred);
703}
700 704
701 dprintk("RPC: gss_destroy_cred \n"); 705static void
706gss_free_cred_callback(struct rcu_head *head)
707{
708 struct gss_cred *gss_cred = container_of(head, struct gss_cred, gc_base.cr_rcu);
709 gss_free_cred(gss_cred);
710}
702 711
703 if (cred->gc_ctx) 712static void
704 gss_put_ctx(cred->gc_ctx); 713gss_destroy_cred(struct rpc_cred *cred)
705 kfree(cred); 714{
715 call_rcu(&cred->cr_rcu, gss_free_cred_callback);
706} 716}
707 717
708/* 718/*