Lines Matching refs:clnt
84 struct rpc_clnt *clnt; member
895 dentry = rpc_mkpipe_dentry(dir, p->name, p->clnt, p->pipe); in gss_pipe_dentry_create()
907 static struct gss_pipe *gss_pipe_alloc(struct rpc_clnt *clnt, in gss_pipe_alloc() argument
923 p->clnt = clnt; in gss_pipe_alloc()
936 struct rpc_clnt *clnt; member
961 gss_pipe = gss_pipe_alloc(args->clnt, args->name, args->upcall_ops); in gss_pipe_alloc_pdo()
967 static struct gss_pipe *gss_pipe_get(struct rpc_clnt *clnt, in gss_pipe_get() argument
971 struct net *net = rpc_net_ns(clnt); in gss_pipe_get()
974 .clnt = clnt, in gss_pipe_get()
980 &clnt->cl_pipedir_objects, in gss_pipe_get()
991 struct rpc_clnt *clnt = p->clnt; in __gss_pipe_free() local
992 struct net *net = rpc_net_ns(clnt); in __gss_pipe_free()
995 &clnt->cl_pipedir_objects, in __gss_pipe_free()
1019 gss_create_new(const struct rpc_auth_create_args *args, struct rpc_clnt *clnt) in gss_create_new() argument
1027 dprintk("RPC: creating GSS authenticator for client %p\n", clnt); in gss_create_new()
1040 gss_auth->client = clnt; in gss_create_new()
1041 gss_auth->net = get_net(rpc_net_ns(clnt)); in gss_create_new()
1073 gss_pipe = gss_pipe_get(clnt, "gssd", &gss_upcall_ops_v1); in gss_create_new()
1080 gss_pipe = gss_pipe_get(clnt, gss_auth->mech->gm_name, in gss_create_new()
1167 struct rpc_clnt *clnt, in gss_auth_find_or_add_hashed() argument
1171 unsigned long hashval = (unsigned long)clnt; in gss_auth_find_or_add_hashed()
1178 if (gss_auth->client != clnt) in gss_auth_find_or_add_hashed()
1204 struct rpc_clnt *clnt) in gss_create_hashed() argument
1209 gss_auth = gss_auth_find_or_add_hashed(args, clnt, NULL); in gss_create_hashed()
1212 new = gss_create_new(args, clnt); in gss_create_hashed()
1215 gss_auth = gss_auth_find_or_add_hashed(args, clnt, new); in gss_create_hashed()
1223 gss_create(const struct rpc_auth_create_args *args, struct rpc_clnt *clnt) in gss_create() argument
1226 struct rpc_xprt_switch *xps = rcu_access_pointer(clnt->cl_xpi.xpi_xpswitch); in gss_create()
1228 while (clnt != clnt->cl_parent) { in gss_create()
1229 struct rpc_clnt *parent = clnt->cl_parent; in gss_create()
1233 clnt = parent; in gss_create()
1236 gss_auth = gss_create_hashed(args, clnt); in gss_create()