Lines Matching refs:clnt

84 	struct rpc_clnt *clnt;  member
857 dentry = rpc_mkpipe_dentry(dir, p->name, p->clnt, p->pipe); in gss_pipe_dentry_create()
869 static struct gss_pipe *gss_pipe_alloc(struct rpc_clnt *clnt, in gss_pipe_alloc() argument
885 p->clnt = clnt; in gss_pipe_alloc()
898 struct rpc_clnt *clnt; member
923 gss_pipe = gss_pipe_alloc(args->clnt, args->name, args->upcall_ops); in gss_pipe_alloc_pdo()
929 static struct gss_pipe *gss_pipe_get(struct rpc_clnt *clnt, in gss_pipe_get() argument
933 struct net *net = rpc_net_ns(clnt); in gss_pipe_get()
936 .clnt = clnt, in gss_pipe_get()
942 &clnt->cl_pipedir_objects, in gss_pipe_get()
953 struct rpc_clnt *clnt = p->clnt; in __gss_pipe_free() local
954 struct net *net = rpc_net_ns(clnt); in __gss_pipe_free()
957 &clnt->cl_pipedir_objects, in __gss_pipe_free()
981 gss_create_new(struct rpc_auth_create_args *args, struct rpc_clnt *clnt) in gss_create_new() argument
989 dprintk("RPC: creating GSS authenticator for client %p\n", clnt); in gss_create_new()
1002 gss_auth->client = clnt; in gss_create_new()
1003 gss_auth->net = get_net(rpc_net_ns(clnt)); in gss_create_new()
1032 gss_pipe = gss_pipe_get(clnt, "gssd", &gss_upcall_ops_v1); in gss_create_new()
1039 gss_pipe = gss_pipe_get(clnt, gss_auth->mech->gm_name, in gss_create_new()
1126 struct rpc_clnt *clnt, in gss_auth_find_or_add_hashed() argument
1130 unsigned long hashval = (unsigned long)clnt; in gss_auth_find_or_add_hashed()
1137 if (gss_auth->client != clnt) in gss_auth_find_or_add_hashed()
1162 gss_create_hashed(struct rpc_auth_create_args *args, struct rpc_clnt *clnt) in gss_create_hashed() argument
1167 gss_auth = gss_auth_find_or_add_hashed(args, clnt, NULL); in gss_create_hashed()
1170 new = gss_create_new(args, clnt); in gss_create_hashed()
1173 gss_auth = gss_auth_find_or_add_hashed(args, clnt, new); in gss_create_hashed()
1181 gss_create(struct rpc_auth_create_args *args, struct rpc_clnt *clnt) in gss_create() argument
1184 struct rpc_xprt *xprt = rcu_access_pointer(clnt->cl_xprt); in gss_create()
1186 while (clnt != clnt->cl_parent) { in gss_create()
1187 struct rpc_clnt *parent = clnt->cl_parent; in gss_create()
1191 clnt = parent; in gss_create()
1194 gss_auth = gss_create_hashed(args, clnt); in gss_create()