Home
last modified time | relevance | path

Searched refs:clnt (Results 1 – 25 of 50) sorted by relevance

12

/Linux-v5.4/net/sunrpc/
Dclnt.c81 static int rpc_ping(struct rpc_clnt *clnt);
84 static void rpc_register_client(struct rpc_clnt *clnt) in rpc_register_client() argument
86 struct net *net = rpc_net_ns(clnt); in rpc_register_client()
90 list_add(&clnt->cl_clients, &sn->all_clients); in rpc_register_client()
94 static void rpc_unregister_client(struct rpc_clnt *clnt) in rpc_unregister_client() argument
96 struct net *net = rpc_net_ns(clnt); in rpc_unregister_client()
100 list_del(&clnt->cl_clients); in rpc_unregister_client()
104 static void __rpc_clnt_remove_pipedir(struct rpc_clnt *clnt) in __rpc_clnt_remove_pipedir() argument
106 rpc_remove_client_dir(clnt); in __rpc_clnt_remove_pipedir()
109 static void rpc_clnt_remove_pipedir(struct rpc_clnt *clnt) in rpc_clnt_remove_pipedir() argument
[all …]
Ddebugfs.c24 struct rpc_clnt *clnt = task->tk_client; in tasks_show() local
35 clnt->cl_clid, xid, rpc_task_timeout(task), task->tk_ops, in tasks_show()
36 clnt->cl_program->name, clnt->cl_vers, rpc_proc_name(task), in tasks_show()
43 __acquires(&clnt->cl_lock) in tasks_start()
45 struct rpc_clnt *clnt = f->private; in tasks_start() local
49 spin_lock(&clnt->cl_lock); in tasks_start()
50 list_for_each_entry(task, &clnt->cl_tasks, tk_task) in tasks_start()
59 struct rpc_clnt *clnt = f->private; in tasks_next() local
66 if (next == &clnt->cl_tasks) in tasks_next()
73 __releases(&clnt->cl_lock) in tasks_stop()
[all …]
Drpcb_clnt.c182 struct rpc_clnt *clnt = sn->rpcb_local_clnt; in rpcb_put_local() local
202 if (clnt) in rpcb_put_local()
203 rpc_shutdown_client(clnt); in rpcb_put_local()
207 static void rpcb_set_local(struct net *net, struct rpc_clnt *clnt, in rpcb_set_local() argument
214 sn->rpcb_local_clnt = clnt; in rpcb_set_local()
254 struct rpc_clnt *clnt, *clnt4; in rpcb_create_local_unix() local
262 clnt = rpc_create(&args); in rpcb_create_local_unix()
263 if (IS_ERR(clnt)) { in rpcb_create_local_unix()
265 "client (errno %ld).\n", PTR_ERR(clnt)); in rpcb_create_local_unix()
266 result = PTR_ERR(clnt); in rpcb_create_local_unix()
[all …]
Dstats.c120 struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt) in rpc_alloc_iostats() argument
125 stats = kcalloc(clnt->cl_maxproc, sizeof(*stats), GFP_KERNEL); in rpc_alloc_iostats()
127 for (i = 0; i < clnt->cl_maxproc; i++) in rpc_alloc_iostats()
243 static int do_print_stats(struct rpc_clnt *clnt, struct rpc_xprt *xprt, void *seqv) in do_print_stats() argument
251 void rpc_clnt_show_stats(struct seq_file *seq, struct rpc_clnt *clnt) in rpc_clnt_show_stats() argument
253 unsigned int op, maxproc = clnt->cl_maxproc; in rpc_clnt_show_stats()
255 if (!clnt->cl_metrics) in rpc_clnt_show_stats()
260 clnt->cl_prog, clnt->cl_vers, clnt->cl_program->name); in rpc_clnt_show_stats()
262 rpc_clnt_iterate_for_each_xprt(clnt, do_print_stats, seq); in rpc_clnt_show_stats()
267 struct rpc_clnt *next = clnt; in rpc_clnt_show_stats()
[all …]
Dauth_unix.c29 unx_create(const struct rpc_auth_create_args *args, struct rpc_clnt *clnt) in unx_create() argument
105 struct rpc_clnt *clnt = task->tk_client; in unx_marshal() local
110 struct user_namespace *userns = clnt->cl_cred ? in unx_marshal()
111 clnt->cl_cred->user_ns : &init_user_ns; in unx_marshal()
121 if (xdr_stream_encode_opaque(xdr, clnt->cl_nodename, in unx_marshal()
122 clnt->cl_nodelen) < 0) in unx_marshal()
Drpc_pipe.c400 struct rpc_clnt *clnt = m->private; in rpc_show_info() local
404 rcu_dereference(clnt->cl_xprt)->servername); in rpc_show_info()
405 seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_program->name, in rpc_show_info()
406 clnt->cl_prog, clnt->cl_vers); in rpc_show_info()
407 seq_printf(m, "address: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR)); in rpc_show_info()
408 seq_printf(m, "protocol: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PROTO)); in rpc_show_info()
409 seq_printf(m, "port: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PORT)); in rpc_show_info()
417 struct rpc_clnt *clnt = NULL; in rpc_info_open() local
425 clnt = RPC_I(inode)->private; in rpc_info_open()
426 if (clnt != NULL && atomic_inc_not_zero(&clnt->cl_count)) { in rpc_info_open()
[all …]
/Linux-v5.4/net/9p/
Dclient.c54 inline int p9_is_proto_dotl(struct p9_client *clnt) in p9_is_proto_dotl() argument
56 return clnt->proto_version == p9_proto_2000L; in p9_is_proto_dotl()
60 inline int p9_is_proto_dotu(struct p9_client *clnt) in p9_is_proto_dotu() argument
62 return clnt->proto_version == p9_proto_2000u; in p9_is_proto_dotu()
66 int p9_show_client_options(struct seq_file *m, struct p9_client *clnt) in p9_show_client_options() argument
68 if (clnt->msize != 8192) in p9_show_client_options()
69 seq_printf(m, ",msize=%u", clnt->msize); in p9_show_client_options()
70 seq_printf(m, ",trans=%s", clnt->trans_mod->name); in p9_show_client_options()
72 switch (clnt->proto_version) { in p9_show_client_options()
84 if (clnt->trans_mod->show_options) in p9_show_client_options()
[all …]
Dprotocol.c545 int p9stat_read(struct p9_client *clnt, char *buf, int len, struct p9_wstat *st) in p9stat_read() argument
555 ret = p9pdu_readf(&fake_pdu, clnt->proto_version, "S", st); in p9stat_read()
558 trace_9p_protocol_dump(clnt, &fake_pdu); in p9stat_read()
572 int p9pdu_finalize(struct p9_client *clnt, struct p9_fcall *pdu) in p9pdu_finalize() argument
581 trace_9p_protocol_dump(clnt, pdu); in p9pdu_finalize()
594 int p9dirent_read(struct p9_client *clnt, char *buf, int len, in p9dirent_read() argument
606 ret = p9pdu_readf(&fake_pdu, clnt->proto_version, "Qqbs", &dirent->qid, in p9dirent_read()
610 trace_9p_protocol_dump(clnt, &fake_pdu); in p9dirent_read()
Dtrans_fd.c717 static int p9_fd_show_options(struct seq_file *m, struct p9_client *clnt) in p9_fd_show_options() argument
719 if (clnt->trans_mod == &p9_tcp_trans) { in p9_fd_show_options()
720 if (clnt->trans_opts.tcp.port != P9_PORT) in p9_fd_show_options()
721 seq_printf(m, ",port=%u", clnt->trans_opts.tcp.port); in p9_fd_show_options()
722 } else if (clnt->trans_mod == &p9_fd_trans) { in p9_fd_show_options()
723 if (clnt->trans_opts.fd.rfd != ~0) in p9_fd_show_options()
724 seq_printf(m, ",rfd=%u", clnt->trans_opts.fd.rfd); in p9_fd_show_options()
725 if (clnt->trans_opts.fd.wfd != ~0) in p9_fd_show_options()
726 seq_printf(m, ",wfd=%u", clnt->trans_opts.fd.wfd); in p9_fd_show_options()
/Linux-v5.4/include/trace/events/
D9p.h101 TP_PROTO(struct p9_client *clnt, int8_t type, int tag),
103 TP_ARGS(clnt, type, tag),
106 __field( void *, clnt )
112 __entry->clnt = clnt;
118 (long)__entry->clnt, show_9p_op(__entry->type),
123 TP_PROTO(struct p9_client *clnt, int8_t type, int tag, int err),
125 TP_ARGS(clnt, type, tag, err),
128 __field( void *, clnt )
135 __entry->clnt = clnt;
142 (long)__entry->clnt, show_9p_op(__entry->type),
[all …]
/Linux-v5.4/net/sunrpc/auth_gss/
Dgss_rpc_upcall.c103 struct rpc_clnt *clnt; in gssp_rpc_create() local
106 clnt = rpc_create(&args); in gssp_rpc_create()
107 if (IS_ERR(clnt)) { in gssp_rpc_create()
109 "client (errno %ld).\n", PTR_ERR(clnt)); in gssp_rpc_create()
110 result = PTR_ERR(clnt); in gssp_rpc_create()
116 "%p)\n", clnt); in gssp_rpc_create()
117 *_clnt = clnt; in gssp_rpc_create()
132 struct rpc_clnt *clnt; in set_gssp_clnt() local
136 ret = gssp_rpc_create(net, &clnt); in set_gssp_clnt()
140 sn->gssp_clnt = clnt; in set_gssp_clnt()
[all …]
Dauth_gss.c61 struct rpc_clnt *clnt; member
897 dentry = rpc_mkpipe_dentry(dir, p->name, p->clnt, p->pipe); in gss_pipe_dentry_create()
909 static struct gss_pipe *gss_pipe_alloc(struct rpc_clnt *clnt, in gss_pipe_alloc() argument
925 p->clnt = clnt; in gss_pipe_alloc()
938 struct rpc_clnt *clnt; member
963 gss_pipe = gss_pipe_alloc(args->clnt, args->name, args->upcall_ops); in gss_pipe_alloc_pdo()
969 static struct gss_pipe *gss_pipe_get(struct rpc_clnt *clnt, in gss_pipe_get() argument
973 struct net *net = rpc_net_ns(clnt); in gss_pipe_get()
976 .clnt = clnt, in gss_pipe_get()
982 &clnt->cl_pipedir_objects, in gss_pipe_get()
[all …]
/Linux-v5.4/include/net/9p/
Dclient.h147 struct p9_client *clnt; member
176 int p9_show_client_options(struct seq_file *m, struct p9_client *clnt);
183 void p9_client_destroy(struct p9_client *clnt);
184 void p9_client_disconnect(struct p9_client *clnt);
185 void p9_client_begin_disconnect(struct p9_client *clnt);
186 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
205 int p9dirent_read(struct p9_client *clnt, char *buf, int len,
241 int p9_is_proto_dotu(struct p9_client *clnt);
242 int p9_is_proto_dotl(struct p9_client *clnt);
/Linux-v5.4/include/linux/sunrpc/
Dclnt.h135 void (*add_xprt_test)(struct rpc_clnt *clnt,
167 struct rpc_xprt *rpc_task_get_xprt(struct rpc_clnt *clnt,
183 int rpc_call_async(struct rpc_clnt *clnt,
187 int rpc_call_sync(struct rpc_clnt *clnt,
189 struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred,
203 int rpc_clnt_iterate_for_each_xprt(struct rpc_clnt *clnt,
207 int rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt,
217 void rpc_set_connect_timeout(struct rpc_clnt *clnt,
230 bool rpc_clnt_xprt_switch_has_addr(struct rpc_clnt *clnt,
Dmetrics.h95 static inline struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt) { return NULL; } in rpc_alloc_iostats() argument
103 static inline void rpc_clnt_show_stats(struct seq_file *seq, struct rpc_clnt *clnt) {} in rpc_clnt_show_stats() argument
Dsched.h300 int rpc_clnt_swap_activate(struct rpc_clnt *clnt);
301 void rpc_clnt_swap_deactivate(struct rpc_clnt *clnt);
304 rpc_clnt_swap_activate(struct rpc_clnt *clnt) in rpc_clnt_swap_activate() argument
310 rpc_clnt_swap_deactivate(struct rpc_clnt *clnt) in rpc_clnt_swap_deactivate() argument
Ddebug.h106 rpc_clnt_debugfs_register(struct rpc_clnt *clnt) in rpc_clnt_debugfs_register() argument
112 rpc_clnt_debugfs_unregister(struct rpc_clnt *clnt) in rpc_clnt_debugfs_unregister() argument
/Linux-v5.4/fs/9p/
Dv9fs.c152 return p9_show_client_options(m, v9ses->clnt); in v9fs_show_options()
406 v9ses->clnt = p9_client_create(dev_name, data); in v9fs_session_init()
407 if (IS_ERR(v9ses->clnt)) { in v9fs_session_init()
408 rc = PTR_ERR(v9ses->clnt); in v9fs_session_init()
415 if (p9_is_proto_dotl(v9ses->clnt)) { in v9fs_session_init()
418 } else if (p9_is_proto_dotu(v9ses->clnt)) { in v9fs_session_init()
426 v9ses->maxdata = v9ses->clnt->msize - P9_IOHDRSZ; in v9fs_session_init()
455 fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, INVALID_UID, in v9fs_session_init()
482 p9_client_destroy(v9ses->clnt); in v9fs_session_init()
497 if (v9ses->clnt) { in v9fs_session_close()
[all …]
Dvfs_dir.c99 buflen = fid->clnt->msize - P9_IOHDRSZ; in v9fs_dir_readdir()
123 err = p9stat_read(fid->clnt, rdir->buf + rdir->head, in v9fs_dir_readdir()
159 buflen = fid->clnt->msize - P9_READDIRHDRSZ; in v9fs_dir_readdir_dotl()
178 err = p9dirent_read(fid->clnt, rdir->buf + rdir->head, in v9fs_dir_readdir_dotl()
Dvfs_file.c174 flock.client_id = fid->clnt->name; in v9fs_file_do_lock()
200 if (flock.client_id != fid->clnt->name) { in v9fs_file_do_lock()
202 flock.client_id = fid->clnt->name; in v9fs_file_do_lock()
235 if (flock.client_id != fid->clnt->name) in v9fs_file_do_lock()
267 glock.client_id = fid->clnt->name; in v9fs_file_getlock()
293 if (glock.client_id != fid->clnt->name) in v9fs_file_getlock()
/Linux-v5.4/fs/lockd/
Dmon.c95 struct rpc_clnt *clnt; in nsm_mon_unmon() local
111 clnt = nsm_create(host->net, host->nodename); in nsm_mon_unmon()
112 if (IS_ERR(clnt)) { in nsm_mon_unmon()
114 "status=%ld, net=%x\n", PTR_ERR(clnt), in nsm_mon_unmon()
116 return PTR_ERR(clnt); in nsm_mon_unmon()
119 msg.rpc_proc = &clnt->cl_procinfo[proc]; in nsm_mon_unmon()
120 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN); in nsm_mon_unmon()
124 rpc_force_rebind(clnt); in nsm_mon_unmon()
125 status = rpc_call_sync(clnt, &msg, RPC_TASK_SOFTCONN); in nsm_mon_unmon()
133 rpc_shutdown_client(clnt); in nsm_mon_unmon()
Dhost.c180 struct rpc_clnt *clnt; in nlm_destroy_host_locked() local
190 clnt = host->h_rpcclnt; in nlm_destroy_host_locked()
191 if (clnt != NULL) in nlm_destroy_host_locked()
192 rpc_shutdown_client(clnt); in nlm_destroy_host_locked()
430 struct rpc_clnt *clnt; in nlm_bind_host() local
441 if ((clnt = host->h_rpcclnt) != NULL) { in nlm_bind_host()
443 rpc_force_rebind(clnt); in nlm_bind_host()
483 clnt = rpc_create(&args); in nlm_bind_host()
484 if (!IS_ERR(clnt)) in nlm_bind_host()
485 host->h_rpcclnt = clnt; in nlm_bind_host()
[all …]
Dclntproc.c264 struct rpc_clnt *clnt; in nlmclnt_call() local
282 if ((clnt = nlm_bind_host(host)) == NULL) in nlmclnt_call()
284 msg.rpc_proc = &clnt->cl_procinfo[proc]; in nlmclnt_call()
287 if ((status = rpc_call_sync(clnt, &msg, 0)) < 0) { in nlmclnt_call()
342 struct rpc_clnt *clnt; in __nlm_async_call() local
354 clnt = nlm_bind_host(host); in __nlm_async_call()
355 if (clnt == NULL) in __nlm_async_call()
357 msg->rpc_proc = &clnt->cl_procinfo[proc]; in __nlm_async_call()
358 task_setup_data.rpc_client = clnt; in __nlm_async_call()
/Linux-v5.4/fs/nfs/
Dmount_clnt.c258 struct rpc_clnt *clnt; in nfs_umount() local
267 clnt = rpc_create(&args); in nfs_umount()
268 if (IS_ERR(clnt)) in nfs_umount()
275 msg.rpc_proc = &clnt->cl_procinfo[MOUNTPROC3_UMNT]; in nfs_umount()
277 msg.rpc_proc = &clnt->cl_procinfo[MOUNTPROC_UMNT]; in nfs_umount()
279 status = rpc_call_sync(clnt, &msg, 0); in nfs_umount()
280 rpc_shutdown_client(clnt); in nfs_umount()
289 PTR_ERR(clnt)); in nfs_umount()
Dnfs4namespace.c155 static struct rpc_clnt *nfs_find_best_sec(struct rpc_clnt *clnt, in nfs_find_best_sec() argument
179 new = rpc_clone_client_set_auth(clnt, pflavor); in nfs_find_best_sec()
212 nfs4_negotiate_security(struct rpc_clnt *clnt, struct inode *inode, in nfs4_negotiate_security() argument
232 new = nfs_find_best_sec(clnt, NFS_SERVER(inode), flavors); in nfs4_negotiate_security()

12