sunrpc: remove __rcu annotation from struct gss_cl_ctx->gc_gss_ctx
authorJeff Layton <jlayton@primarydata.com>
Wed, 16 Jul 2014 10:52:18 +0000 (06:52 -0400)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Sun, 3 Aug 2014 21:05:23 +0000 (17:05 -0400)
Commit 5b22216e11f7 (nfs: __rcu annotations) added a __rcu annotation to
the gc_gss_ctx field. I see no rationale for adding that though, as that
field does not seem to be managed via RCU at all.

Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Paul McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
include/linux/sunrpc/auth_gss.h

index cbc6875..36eebc4 100644 (file)
@@ -69,7 +69,7 @@ struct gss_cl_ctx {
        enum rpc_gss_proc       gc_proc;
        u32                     gc_seq;
        spinlock_t              gc_seq_lock;
-       struct gss_ctx __rcu    *gc_gss_ctx;
+       struct gss_ctx          *gc_gss_ctx;
        struct xdr_netobj       gc_wire_ctx;
        struct xdr_netobj       gc_acceptor;
        u32                     gc_win;