Symbol: p9_client
fs/9p/v9fs.h
136
struct p9_client *clnt; /* 9p client */
include/net/9p/client.h
247
struct p9_client *clnt;
include/net/9p/client.h
278
int p9_show_client_options(struct seq_file *m, struct p9_client *clnt);
include/net/9p/client.h
284
struct p9_client *p9_client_create(struct fs_context *fc);
include/net/9p/client.h
285
void p9_client_destroy(struct p9_client *clnt);
include/net/9p/client.h
286
void p9_client_disconnect(struct p9_client *clnt);
include/net/9p/client.h
287
void p9_client_begin_disconnect(struct p9_client *clnt);
include/net/9p/client.h
288
struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
include/net/9p/client.h
311
int p9dirent_read(struct p9_client *clnt, char *buf, int len,
include/net/9p/client.h
327
struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag);
include/net/9p/client.h
339
int p9_req_put(struct p9_client *c, struct p9_req_t *r);
include/net/9p/client.h
381
void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status);
include/net/9p/client.h
385
int p9stat_read(struct p9_client *clnt, char *buf, int len,
include/net/9p/client.h
389
int p9_is_proto_dotu(struct p9_client *clnt);
include/net/9p/client.h
390
int p9_is_proto_dotl(struct p9_client *clnt);
include/net/9p/transport.h
59
int (*create)(struct p9_client *client,
include/net/9p/transport.h
61
void (*close)(struct p9_client *client);
include/net/9p/transport.h
62
int (*request)(struct p9_client *client, struct p9_req_t *req);
include/net/9p/transport.h
63
int (*cancel)(struct p9_client *client, struct p9_req_t *req);
include/net/9p/transport.h
64
int (*cancelled)(struct p9_client *client, struct p9_req_t *req);
include/net/9p/transport.h
65
int (*zc_request)(struct p9_client *client, struct p9_req_t *req,
include/net/9p/transport.h
68
int (*show_options)(struct seq_file *m, struct p9_client *client);
include/trace/events/9p.h
125
TP_PROTO(struct p9_client *clnt, int8_t type, int tag),
include/trace/events/9p.h
147
TP_PROTO(struct p9_client *clnt, int8_t type, int tag, int err),
include/trace/events/9p.h
173
TP_PROTO(struct p9_client *clnt, struct p9_fcall *pdu),
net/9p/client.c
1037
struct p9_client *clnt;
net/9p/client.c
1112
struct p9_client *clnt;
net/9p/client.c
1158
struct p9_client *clnt;
net/9p/client.c
1202
struct p9_client *clnt;
net/9p/client.c
1245
struct p9_client *clnt;
net/9p/client.c
1277
struct p9_client *clnt;
net/9p/client.c
1297
struct p9_client *clnt;
net/9p/client.c
1322
struct p9_client *clnt;
net/9p/client.c
1358
struct p9_client *clnt;
net/9p/client.c
1386
struct p9_client *clnt;
net/9p/client.c
1428
struct p9_client *clnt = fid->clnt;
net/9p/client.c
1503
struct p9_client *clnt = fid->clnt;
net/9p/client.c
155
p9_tag_alloc(struct p9_client *c, int8_t type, uint t_size, uint r_size,
net/9p/client.c
1568
struct p9_client *clnt = fid->clnt;
net/9p/client.c
1614
struct p9_client *clnt;
net/9p/client.c
1666
struct p9_client *clnt;
net/9p/client.c
1757
struct p9_client *clnt;
net/9p/client.c
1795
struct p9_client *clnt;
net/9p/client.c
1826
struct p9_client *clnt;
net/9p/client.c
1863
struct p9_client *clnt;
net/9p/client.c
1890
struct p9_client *clnt;
net/9p/client.c
1921
struct p9_client *clnt;
net/9p/client.c
1966
struct p9_client *clnt;
net/9p/client.c
1989
struct p9_client *clnt;
net/9p/client.c
2056
struct p9_client *clnt;
net/9p/client.c
2086
struct p9_client *clnt;
net/9p/client.c
2114
struct p9_client *clnt;
net/9p/client.c
2145
struct p9_client *clnt;
net/9p/client.c
2181
struct p9_client *clnt;
net/9p/client.c
235
struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
net/9p/client.c
268
static void p9_tag_remove(struct p9_client *c, struct p9_req_t *r)
net/9p/client.c
279
int p9_req_put(struct p9_client *c, struct p9_req_t *r)
net/9p/client.c
300
static void p9_tag_cleanup(struct p9_client *c)
net/9p/client.c
322
void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
net/9p/client.c
36
inline int p9_is_proto_dotl(struct p9_client *clnt)
net/9p/client.c
399
static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
net/9p/client.c
42
inline int p9_is_proto_dotu(struct p9_client *clnt)
net/9p/client.c
460
p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
net/9p/client.c
474
static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
net/9p/client.c
48
int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)
net/9p/client.c
502
static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
net/9p/client.c
551
p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
net/9p/client.c
657
static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
net/9p/client.c
729
static struct p9_fid *p9_fid_create(struct p9_client *clnt)
net/9p/client.c
761
struct p9_client *clnt;
net/9p/client.c
789
static int p9_client_version(struct p9_client *c)
net/9p/client.c
84
static int apply_client_options(struct p9_client *clnt, struct fs_context *fc)
net/9p/client.c
856
struct p9_client *p9_client_create(struct fs_context *fc)
net/9p/client.c
860
struct p9_client *clnt;
net/9p/client.c
948
void p9_client_destroy(struct p9_client *clnt)
net/9p/client.c
96
static int p9_fcall_init(struct p9_client *c, struct p9_fcall *fc,
net/9p/client.c
972
void p9_client_disconnect(struct p9_client *clnt)
net/9p/client.c
979
void p9_client_begin_disconnect(struct p9_client *clnt)
net/9p/client.c
986
struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
net/9p/protocol.c
43
size_t p9_msg_buf_size(struct p9_client *c, enum p9_msg_t type,
net/9p/protocol.c
719
int p9stat_read(struct p9_client *clnt, char *buf, int len, struct p9_wstat *st)
net/9p/protocol.c
746
int p9pdu_finalize(struct p9_client *clnt, struct p9_fcall *pdu)
net/9p/protocol.c
768
int p9dirent_read(struct p9_client *clnt, char *buf, int len,
net/9p/protocol.h
11
size_t p9_msg_buf_size(struct p9_client *c, enum p9_msg_t type,
net/9p/protocol.h
17
int p9pdu_finalize(struct p9_client *clnt, struct p9_fcall *pdu);
net/9p/trans_fd.c
188
p9_fd_poll(struct p9_client *client, struct poll_table_struct *pt, int *err)
net/9p/trans_fd.c
216
static int p9_fd_read(struct p9_client *client, void *v, int len)
net/9p/trans_fd.c
384
static int p9_fd_write(struct p9_client *client, void *v, int len)
net/9p/trans_fd.c
549
static void p9_conn_create(struct p9_client *client)
net/9p/trans_fd.c
631
static int p9_fd_request(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_fd.c
657
static int p9_fd_cancel(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_fd.c
678
static int p9_fd_cancelled(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_fd.c
706
static int p9_fd_show_options(struct seq_file *m, struct p9_client *clnt)
net/9p/trans_fd.c
720
static int p9_fd_open(struct p9_client *client, int rfd, int wfd)
net/9p/trans_fd.c
761
static int p9_socket_open(struct p9_client *client, struct socket *csocket)
net/9p/trans_fd.c
79
struct p9_client *client;
net/9p/trans_fd.c
827
static void p9_fd_close(struct p9_client *client)
net/9p/trans_fd.c
873
p9_fd_create_tcp(struct p9_client *client, struct fs_context *fc)
net/9p/trans_fd.c
931
p9_fd_create_unix(struct p9_client *client, struct fs_context *fc)
net/9p/trans_fd.c
970
p9_fd_create(struct p9_client *client, struct fs_context *fc)
net/9p/trans_rdma.c
109
static int p9_rdma_show_options(struct seq_file *m, struct p9_client *clnt)
net/9p/trans_rdma.c
129
struct p9_client *c = id->context;
net/9p/trans_rdma.c
191
struct p9_client *client = cq->cq_context;
net/9p/trans_rdma.c
246
struct p9_client *client = cq->cq_context;
net/9p/trans_rdma.c
286
post_recv(struct p9_client *client, struct p9_rdma_context *c)
net/9p/trans_rdma.c
321
static int rdma_request(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_rdma.c
454
static void rdma_close(struct p9_client *client)
net/9p/trans_rdma.c
496
static int rdma_cancel(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_rdma.c
507
static int rdma_cancelled(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_rdma.c
537
rdma_create_trans(struct p9_client *client, struct fs_context *fc)
net/9p/trans_usbg.c
350
struct p9_client *client;
net/9p/trans_usbg.c
380
static int p9_usbg_create(struct p9_client *client, struct fs_context *fc)
net/9p/trans_usbg.c
41
struct p9_client *client;
net/9p/trans_usbg.c
444
static void p9_usbg_close(struct p9_client *client)
net/9p/trans_usbg.c
471
static int p9_usbg_request(struct p9_client *client, struct p9_req_t *p9_req)
net/9p/trans_usbg.c
494
static int p9_usbg_cancel(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_virtio.c
105
static void p9_virtio_close(struct p9_client *client)
net/9p/trans_virtio.c
193
static int p9_virtio_cancel(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_virtio.c
199
static int p9_virtio_cancelled(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_virtio.c
255
p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_virtio.c
420
p9_virtio_zc_request(struct p9_client *client, struct p9_req_t *req,
net/9p/trans_virtio.c
69
struct p9_client *client;
net/9p/trans_virtio.c
697
p9_virtio_create(struct p9_client *client, struct fs_context *fc)
net/9p/trans_xen.c
117
static int p9_xen_request(struct p9_client *client, struct p9_req_t *p9_req)
net/9p/trans_xen.c
56
struct p9_client *client;
net/9p/trans_xen.c
65
static int p9_xen_cancel(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_xen.c
70
static int p9_xen_create(struct p9_client *client, struct fs_context *fc)
net/9p/trans_xen.c
90
static void p9_xen_close(struct p9_client *client)