Symbol: rpc_authops
include/linux/sunrpc/auth.h
146
extern const struct rpc_authops authunix_ops;
include/linux/sunrpc/auth.h
147
extern const struct rpc_authops authnull_ops;
include/linux/sunrpc/auth.h
148
extern const struct rpc_authops authtls_ops;
include/linux/sunrpc/auth.h
155
int rpcauth_register(const struct rpc_authops *);
include/linux/sunrpc/auth.h
156
int rpcauth_unregister(const struct rpc_authops *);
include/linux/sunrpc/auth.h
72
struct rpc_authops;
include/linux/sunrpc/auth.h
80
const struct rpc_authops *au_ops;
net/sunrpc/auth.c
106
rpcauth_register(const struct rpc_authops *ops)
net/sunrpc/auth.c
108
const struct rpc_authops *old;
net/sunrpc/auth.c
113
old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], NULL, ops);
net/sunrpc/auth.c
121
rpcauth_unregister(const struct rpc_authops *ops)
net/sunrpc/auth.c
123
const struct rpc_authops *old;
net/sunrpc/auth.c
129
old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], ops, NULL);
net/sunrpc/auth.c
136
static const struct rpc_authops *
net/sunrpc/auth.c
139
const struct rpc_authops *ops;
net/sunrpc/auth.c
162
rpcauth_put_authops(const struct rpc_authops *ops)
net/sunrpc/auth.c
179
const struct rpc_authops *ops = rpcauth_get_authops(flavor);
net/sunrpc/auth.c
205
const struct rpc_authops *ops;
net/sunrpc/auth.c
225
const struct rpc_authops *ops;
net/sunrpc/auth.c
32
static const struct rpc_authops __rcu *auth_flavors[RPC_AUTH_MAXFLAVOR] = {
net/sunrpc/auth.c
33
[RPC_AUTH_NULL] = (const struct rpc_authops __force __rcu *)&authnull_ops,
net/sunrpc/auth.c
34
[RPC_AUTH_UNIX] = (const struct rpc_authops __force __rcu *)&authunix_ops,
net/sunrpc/auth.c
35
[RPC_AUTH_TLS] = (const struct rpc_authops __force __rcu *)&authtls_ops,
net/sunrpc/auth_gss/auth_gss.c
2184
static const struct rpc_authops authgss_ops = {
net/sunrpc/auth_gss/auth_gss.c
37
static const struct rpc_authops authgss_ops;
net/sunrpc/auth_null.c
104
const struct rpc_authops authnull_ops = {
net/sunrpc/auth_tls.c
138
const struct rpc_authops authtls_ops = {
net/sunrpc/auth_unix.c
214
const struct rpc_authops authunix_ops = {