rpc_authops        74 include/linux/sunrpc/auth.h struct rpc_authops;
rpc_authops        82 include/linux/sunrpc/auth.h 	const struct rpc_authops *au_ops;
rpc_authops       146 include/linux/sunrpc/auth.h extern const struct rpc_authops	authunix_ops;
rpc_authops       147 include/linux/sunrpc/auth.h extern const struct rpc_authops	authnull_ops;
rpc_authops       154 include/linux/sunrpc/auth.h int			rpcauth_register(const struct rpc_authops *);
rpc_authops       155 include/linux/sunrpc/auth.h int			rpcauth_unregister(const struct rpc_authops *);
rpc_authops        32 net/sunrpc/auth.c static const struct rpc_authops __rcu *auth_flavors[RPC_AUTH_MAXFLAVOR] = {
rpc_authops        33 net/sunrpc/auth.c 	[RPC_AUTH_NULL] = (const struct rpc_authops __force __rcu *)&authnull_ops,
rpc_authops        34 net/sunrpc/auth.c 	[RPC_AUTH_UNIX] = (const struct rpc_authops __force __rcu *)&authunix_ops,
rpc_authops       109 net/sunrpc/auth.c rpcauth_register(const struct rpc_authops *ops)
rpc_authops       111 net/sunrpc/auth.c 	const struct rpc_authops *old;
rpc_authops       116 net/sunrpc/auth.c 	old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], NULL, ops);
rpc_authops       124 net/sunrpc/auth.c rpcauth_unregister(const struct rpc_authops *ops)
rpc_authops       126 net/sunrpc/auth.c 	const struct rpc_authops *old;
rpc_authops       132 net/sunrpc/auth.c 	old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], ops, NULL);
rpc_authops       139 net/sunrpc/auth.c static const struct rpc_authops *
rpc_authops       142 net/sunrpc/auth.c 	const struct rpc_authops *ops;
rpc_authops       165 net/sunrpc/auth.c rpcauth_put_authops(const struct rpc_authops *ops)
rpc_authops       182 net/sunrpc/auth.c 	const struct rpc_authops *ops = rpcauth_get_authops(flavor);
rpc_authops       208 net/sunrpc/auth.c 	const struct rpc_authops *ops;
rpc_authops       237 net/sunrpc/auth.c 	const struct rpc_authops *ops;
rpc_authops       277 net/sunrpc/auth.c 	const struct rpc_authops *ops;
rpc_authops        36 net/sunrpc/auth_gss/auth_gss.c static const struct rpc_authops authgss_ops;
rpc_authops      2150 net/sunrpc/auth_gss/auth_gss.c static const struct rpc_authops authgss_ops = {
rpc_authops       104 net/sunrpc/auth_null.c const struct rpc_authops authnull_ops = {
rpc_authops       206 net/sunrpc/auth_unix.c const struct rpc_authops authunix_ops = {