diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-08-06 12:21:13 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-08-07 15:16:24 -0400 |
commit | a4deb81ba8ece75af5560d40d9bb8d242c48a111 (patch) | |
tree | 887be205b83239da806468f61c99c73e823edbcf /net | |
parent | 905f8d16e32fd48499e3f8b9a2d9f746af3e0949 (diff) | |
download | linux-3.10-a4deb81ba8ece75af5560d40d9bb8d242c48a111.tar.gz linux-3.10-a4deb81ba8ece75af5560d40d9bb8d242c48a111.tar.bz2 linux-3.10-a4deb81ba8ece75af5560d40d9bb8d242c48a111.zip |
SUNRPC: Don't call gss_delete_sec_context() from an rcu context
Doing so may not be safe...
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/auth_gss/auth_gss.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c index 4bbc59cc237..53995af9ca4 100644 --- a/net/sunrpc/auth_gss/auth_gss.c +++ b/net/sunrpc/auth_gss/auth_gss.c @@ -736,9 +736,6 @@ gss_do_free_ctx(struct gss_cl_ctx *ctx) { dprintk("RPC: gss_free_ctx\n"); - if (ctx->gc_gss_ctx) - gss_delete_sec_context(&ctx->gc_gss_ctx); - kfree(ctx->gc_wire_ctx.data); kfree(ctx); } @@ -753,7 +750,13 @@ gss_free_ctx_callback(struct rcu_head *head) static void gss_free_ctx(struct gss_cl_ctx *ctx) { + struct gss_ctx *gc_gss_ctx; + + gc_gss_ctx = rcu_dereference(ctx->gc_gss_ctx); + rcu_assign_pointer(ctx->gc_gss_ctx, NULL); call_rcu(&ctx->gc_rcu, gss_free_ctx_callback); + if (gc_gss_ctx) + gss_delete_sec_context(&gc_gss_ctx); } static void |