Symbol: p9_client
fs/9p/v9fs.h
130
struct p9_client *clnt; /* 9p client */
include/net/9p/client.h
245
struct p9_client *clnt;
include/net/9p/client.h
276
int p9_show_client_options(struct seq_file *m, struct p9_client *clnt);
include/net/9p/client.h
282
struct p9_client *p9_client_create(struct fs_context *fc);
include/net/9p/client.h
283
void p9_client_destroy(struct p9_client *clnt);
include/net/9p/client.h
284
void p9_client_disconnect(struct p9_client *clnt);
include/net/9p/client.h
285
void p9_client_begin_disconnect(struct p9_client *clnt);
include/net/9p/client.h
286
struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
include/net/9p/client.h
309
int p9dirent_read(struct p9_client *clnt, char *buf, int len,
include/net/9p/client.h
325
struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag);
include/net/9p/client.h
337
int p9_req_put(struct p9_client *c, struct p9_req_t *r);
include/net/9p/client.h
379
void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status);
include/net/9p/client.h
383
int p9stat_read(struct p9_client *clnt, char *buf, int len,
include/net/9p/client.h
387
int p9_is_proto_dotu(struct p9_client *clnt);
include/net/9p/client.h
388
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
1035
struct p9_client *clnt;
net/9p/client.c
1109
struct p9_client *clnt;
net/9p/client.c
1155
struct p9_client *clnt;
net/9p/client.c
1199
struct p9_client *clnt;
net/9p/client.c
1242
struct p9_client *clnt;
net/9p/client.c
1274
struct p9_client *clnt;
net/9p/client.c
1294
struct p9_client *clnt;
net/9p/client.c
1319
struct p9_client *clnt;
net/9p/client.c
1355
struct p9_client *clnt;
net/9p/client.c
1383
struct p9_client *clnt;
net/9p/client.c
1425
struct p9_client *clnt = fid->clnt;
net/9p/client.c
1500
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
1565
struct p9_client *clnt = fid->clnt;
net/9p/client.c
1611
struct p9_client *clnt;
net/9p/client.c
1663
struct p9_client *clnt;
net/9p/client.c
1754
struct p9_client *clnt;
net/9p/client.c
1792
struct p9_client *clnt;
net/9p/client.c
1823
struct p9_client *clnt;
net/9p/client.c
1860
struct p9_client *clnt;
net/9p/client.c
1887
struct p9_client *clnt;
net/9p/client.c
1918
struct p9_client *clnt;
net/9p/client.c
1963
struct p9_client *clnt;
net/9p/client.c
1986
struct p9_client *clnt;
net/9p/client.c
2053
struct p9_client *clnt;
net/9p/client.c
2083
struct p9_client *clnt;
net/9p/client.c
2111
struct p9_client *clnt;
net/9p/client.c
2142
struct p9_client *clnt;
net/9p/client.c
2178
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
655
static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
net/9p/client.c
727
static struct p9_fid *p9_fid_create(struct p9_client *clnt)
net/9p/client.c
759
struct p9_client *clnt;
net/9p/client.c
787
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
854
struct p9_client *p9_client_create(struct fs_context *fc)
net/9p/client.c
858
struct p9_client *clnt;
net/9p/client.c
946
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
970
void p9_client_disconnect(struct p9_client *clnt)
net/9p/client.c
977
void p9_client_begin_disconnect(struct p9_client *clnt)
net/9p/client.c
984
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
972
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
180
struct p9_client *client = cq->cq_context;
net/9p/trans_rdma.c
231
struct p9_client *client = cq->cq_context;
net/9p/trans_rdma.c
271
post_recv(struct p9_client *client, struct p9_rdma_context *c)
net/9p/trans_rdma.c
306
static int rdma_request(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_rdma.c
439
static void rdma_close(struct p9_client *client)
net/9p/trans_rdma.c
481
static int rdma_cancel(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_rdma.c
492
static int rdma_cancelled(struct p9_client *client, struct p9_req_t *req)
net/9p/trans_rdma.c
522
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
692
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)