diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/9p/9p.h | 14 | ||||
| -rw-r--r-- | include/net/9p/client.h | 8 | ||||
| -rw-r--r-- | include/net/9p/transport.h | 10 | ||||
| -rw-r--r-- | include/trace/events/9p.h | 176 |
4 files changed, 185 insertions, 23 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index a6326ef8ade6..2d70b95b3b55 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h | |||
| @@ -76,11 +76,8 @@ do { \ | |||
| 76 | } \ | 76 | } \ |
| 77 | } while (0) | 77 | } while (0) |
| 78 | 78 | ||
| 79 | #define P9_DUMP_PKT(way, pdu) p9pdu_dump(way, pdu) | ||
| 80 | |||
| 81 | #else | 79 | #else |
| 82 | #define P9_DPRINTK(level, format, arg...) do { } while (0) | 80 | #define P9_DPRINTK(level, format, arg...) do { } while (0) |
| 83 | #define P9_DUMP_PKT(way, pdu) do { } while (0) | ||
| 84 | #endif | 81 | #endif |
| 85 | 82 | ||
| 86 | 83 | ||
| @@ -359,6 +356,9 @@ enum p9_qid_t { | |||
| 359 | /* Room for readdir header */ | 356 | /* Room for readdir header */ |
| 360 | #define P9_READDIRHDRSZ 24 | 357 | #define P9_READDIRHDRSZ 24 |
| 361 | 358 | ||
| 359 | /* size of header for zero copy read/write */ | ||
| 360 | #define P9_ZC_HDR_SZ 4096 | ||
| 361 | |||
| 362 | /** | 362 | /** |
| 363 | * struct p9_qid - file system entity information | 363 | * struct p9_qid - file system entity information |
| 364 | * @type: 8-bit type &p9_qid_t | 364 | * @type: 8-bit type &p9_qid_t |
| @@ -555,10 +555,6 @@ struct p9_rstatfs { | |||
| 555 | * @tag: transaction id of the request | 555 | * @tag: transaction id of the request |
| 556 | * @offset: used by marshalling routines to track current position in buffer | 556 | * @offset: used by marshalling routines to track current position in buffer |
| 557 | * @capacity: used by marshalling routines to track total malloc'd capacity | 557 | * @capacity: used by marshalling routines to track total malloc'd capacity |
| 558 | * @pubuf: Payload user buffer given by the caller | ||
| 559 | * @pkbuf: Payload kernel buffer given by the caller | ||
| 560 | * @pbuf_size: pubuf/pkbuf(only one will be !NULL) size to be read/write. | ||
| 561 | * @private: For transport layer's use. | ||
| 562 | * @sdata: payload | 558 | * @sdata: payload |
| 563 | * | 559 | * |
| 564 | * &p9_fcall represents the structure for all 9P RPC | 560 | * &p9_fcall represents the structure for all 9P RPC |
| @@ -575,10 +571,6 @@ struct p9_fcall { | |||
| 575 | 571 | ||
| 576 | size_t offset; | 572 | size_t offset; |
| 577 | size_t capacity; | 573 | size_t capacity; |
| 578 | char __user *pubuf; | ||
| 579 | char *pkbuf; | ||
| 580 | size_t pbuf_size; | ||
| 581 | void *private; | ||
| 582 | 574 | ||
| 583 | u8 *sdata; | 575 | u8 *sdata; |
| 584 | }; | 576 | }; |
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index 55ce72ce9861..fc9b90b0c052 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h | |||
| @@ -151,7 +151,7 @@ struct p9_req_t { | |||
| 151 | 151 | ||
| 152 | struct p9_client { | 152 | struct p9_client { |
| 153 | spinlock_t lock; /* protect client structure */ | 153 | spinlock_t lock; /* protect client structure */ |
| 154 | int msize; | 154 | unsigned int msize; |
| 155 | unsigned char proto_version; | 155 | unsigned char proto_version; |
| 156 | struct p9_trans_module *trans_mod; | 156 | struct p9_trans_module *trans_mod; |
| 157 | enum p9_trans_status status; | 157 | enum p9_trans_status status; |
| @@ -240,8 +240,8 @@ int p9_client_read(struct p9_fid *fid, char *data, char __user *udata, | |||
| 240 | int p9_client_write(struct p9_fid *fid, char *data, const char __user *udata, | 240 | int p9_client_write(struct p9_fid *fid, char *data, const char __user *udata, |
| 241 | u64 offset, u32 count); | 241 | u64 offset, u32 count); |
| 242 | int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset); | 242 | int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset); |
| 243 | int p9dirent_read(char *buf, int len, struct p9_dirent *dirent, | 243 | int p9dirent_read(struct p9_client *clnt, char *buf, int len, |
| 244 | int proto_version); | 244 | struct p9_dirent *dirent); |
| 245 | struct p9_wstat *p9_client_stat(struct p9_fid *fid); | 245 | struct p9_wstat *p9_client_stat(struct p9_fid *fid); |
| 246 | int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst); | 246 | int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst); |
| 247 | int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *attr); | 247 | int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *attr); |
| @@ -259,7 +259,7 @@ struct p9_req_t *p9_tag_lookup(struct p9_client *, u16); | |||
| 259 | void p9_client_cb(struct p9_client *c, struct p9_req_t *req); | 259 | void p9_client_cb(struct p9_client *c, struct p9_req_t *req); |
| 260 | 260 | ||
| 261 | int p9_parse_header(struct p9_fcall *, int32_t *, int8_t *, int16_t *, int); | 261 | int p9_parse_header(struct p9_fcall *, int32_t *, int8_t *, int16_t *, int); |
| 262 | int p9stat_read(char *, int, struct p9_wstat *, int); | 262 | int p9stat_read(struct p9_client *, char *, int, struct p9_wstat *); |
| 263 | void p9stat_free(struct p9_wstat *); | 263 | void p9stat_free(struct p9_wstat *); |
| 264 | 264 | ||
| 265 | int p9_is_proto_dotu(struct p9_client *clnt); | 265 | int p9_is_proto_dotu(struct p9_client *clnt); |
diff --git a/include/net/9p/transport.h b/include/net/9p/transport.h index 83531ebeee99..adcbb20f6511 100644 --- a/include/net/9p/transport.h +++ b/include/net/9p/transport.h | |||
| @@ -26,13 +26,6 @@ | |||
| 26 | #ifndef NET_9P_TRANSPORT_H | 26 | #ifndef NET_9P_TRANSPORT_H |
| 27 | #define NET_9P_TRANSPORT_H | 27 | #define NET_9P_TRANSPORT_H |
| 28 | 28 | ||
| 29 | #define P9_TRANS_PREF_PAYLOAD_MASK 0x1 | ||
| 30 | |||
| 31 | /* Default. Add Payload to PDU before sending it down to transport layer */ | ||
| 32 | #define P9_TRANS_PREF_PAYLOAD_DEF 0x0 | ||
| 33 | /* Send pay load separately to transport layer along with PDU.*/ | ||
| 34 | #define P9_TRANS_PREF_PAYLOAD_SEP 0x1 | ||
| 35 | |||
| 36 | /** | 29 | /** |
| 37 | * struct p9_trans_module - transport module interface | 30 | * struct p9_trans_module - transport module interface |
| 38 | * @list: used to maintain a list of currently available transports | 31 | * @list: used to maintain a list of currently available transports |
| @@ -56,13 +49,14 @@ struct p9_trans_module { | |||
| 56 | struct list_head list; | 49 | struct list_head list; |
| 57 | char *name; /* name of transport */ | 50 | char *name; /* name of transport */ |
| 58 | int maxsize; /* max message size of transport */ | 51 | int maxsize; /* max message size of transport */ |
| 59 | int pref; /* Preferences of this transport */ | ||
| 60 | int def; /* this transport should be default */ | 52 | int def; /* this transport should be default */ |
| 61 | struct module *owner; | 53 | struct module *owner; |
| 62 | int (*create)(struct p9_client *, const char *, char *); | 54 | int (*create)(struct p9_client *, const char *, char *); |
| 63 | void (*close) (struct p9_client *); | 55 | void (*close) (struct p9_client *); |
| 64 | int (*request) (struct p9_client *, struct p9_req_t *req); | 56 | int (*request) (struct p9_client *, struct p9_req_t *req); |
| 65 | int (*cancel) (struct p9_client *, struct p9_req_t *req); | 57 | int (*cancel) (struct p9_client *, struct p9_req_t *req); |
| 58 | int (*zc_request)(struct p9_client *, struct p9_req_t *, | ||
| 59 | char *, char *, int , int, int, int); | ||
| 66 | }; | 60 | }; |
| 67 | 61 | ||
| 68 | void v9fs_register_trans(struct p9_trans_module *m); | 62 | void v9fs_register_trans(struct p9_trans_module *m); |
diff --git a/include/trace/events/9p.h b/include/trace/events/9p.h new file mode 100644 index 000000000000..beeaed8398ec --- /dev/null +++ b/include/trace/events/9p.h | |||
| @@ -0,0 +1,176 @@ | |||
| 1 | #undef TRACE_SYSTEM | ||
| 2 | #define TRACE_SYSTEM 9p | ||
| 3 | |||
| 4 | #if !defined(_TRACE_9P_H) || defined(TRACE_HEADER_MULTI_READ) | ||
| 5 | #define _TRACE_9P_H | ||
| 6 | |||
| 7 | #include <linux/tracepoint.h> | ||
| 8 | |||
| 9 | #define show_9p_op(type) \ | ||
| 10 | __print_symbolic(type, \ | ||
| 11 | { P9_TLERROR, "P9_TLERROR" }, \ | ||
| 12 | { P9_RLERROR, "P9_RLERROR" }, \ | ||
| 13 | { P9_TSTATFS, "P9_TSTATFS" }, \ | ||
| 14 | { P9_RSTATFS, "P9_RSTATFS" }, \ | ||
| 15 | { P9_TLOPEN, "P9_TLOPEN" }, \ | ||
| 16 | { P9_RLOPEN, "P9_RLOPEN" }, \ | ||
| 17 | { P9_TLCREATE, "P9_TLCREATE" }, \ | ||
| 18 | { P9_RLCREATE, "P9_RLCREATE" }, \ | ||
| 19 | { P9_TSYMLINK, "P9_TSYMLINK" }, \ | ||
| 20 | { P9_RSYMLINK, "P9_RSYMLINK" }, \ | ||
| 21 | { P9_TMKNOD, "P9_TMKNOD" }, \ | ||
| 22 | { P9_RMKNOD, "P9_RMKNOD" }, \ | ||
| 23 | { P9_TRENAME, "P9_TRENAME" }, \ | ||
| 24 | { P9_RRENAME, "P9_RRENAME" }, \ | ||
| 25 | { P9_TREADLINK, "P9_TREADLINK" }, \ | ||
| 26 | { P9_RREADLINK, "P9_RREADLINK" }, \ | ||
| 27 | { P9_TGETATTR, "P9_TGETATTR" }, \ | ||
| 28 | { P9_RGETATTR, "P9_RGETATTR" }, \ | ||
| 29 | { P9_TSETATTR, "P9_TSETATTR" }, \ | ||
| 30 | { P9_RSETATTR, "P9_RSETATTR" }, \ | ||
| 31 | { P9_TXATTRWALK, "P9_TXATTRWALK" }, \ | ||
| 32 | { P9_RXATTRWALK, "P9_RXATTRWALK" }, \ | ||
| 33 | { P9_TXATTRCREATE, "P9_TXATTRCREATE" }, \ | ||
| 34 | { P9_RXATTRCREATE, "P9_RXATTRCREATE" }, \ | ||
| 35 | { P9_TREADDIR, "P9_TREADDIR" }, \ | ||
| 36 | { P9_RREADDIR, "P9_RREADDIR" }, \ | ||
| 37 | { P9_TFSYNC, "P9_TFSYNC" }, \ | ||
| 38 | { P9_RFSYNC, "P9_RFSYNC" }, \ | ||
| 39 | { P9_TLOCK, "P9_TLOCK" }, \ | ||
| 40 | { P9_RLOCK, "P9_RLOCK" }, \ | ||
| 41 | { P9_TGETLOCK, "P9_TGETLOCK" }, \ | ||
| 42 | { P9_RGETLOCK, "P9_RGETLOCK" }, \ | ||
| 43 | { P9_TLINK, "P9_TLINK" }, \ | ||
| 44 | { P9_RLINK, "P9_RLINK" }, \ | ||
| 45 | { P9_TMKDIR, "P9_TMKDIR" }, \ | ||
| 46 | { P9_RMKDIR, "P9_RMKDIR" }, \ | ||
| 47 | { P9_TRENAMEAT, "P9_TRENAMEAT" }, \ | ||
| 48 | { P9_RRENAMEAT, "P9_RRENAMEAT" }, \ | ||
| 49 | { P9_TUNLINKAT, "P9_TUNLINKAT" }, \ | ||
| 50 | { P9_RUNLINKAT, "P9_RUNLINKAT" }, \ | ||
| 51 | { P9_TVERSION, "P9_TVERSION" }, \ | ||
| 52 | { P9_RVERSION, "P9_RVERSION" }, \ | ||
| 53 | { P9_TAUTH, "P9_TAUTH" }, \ | ||
| 54 | { P9_RAUTH, "P9_RAUTH" }, \ | ||
| 55 | { P9_TATTACH, "P9_TATTACH" }, \ | ||
| 56 | { P9_RATTACH, "P9_RATTACH" }, \ | ||
| 57 | { P9_TERROR, "P9_TERROR" }, \ | ||
| 58 | { P9_RERROR, "P9_RERROR" }, \ | ||
| 59 | { P9_TFLUSH, "P9_TFLUSH" }, \ | ||
| 60 | { P9_RFLUSH, "P9_RFLUSH" }, \ | ||
| 61 | { P9_TWALK, "P9_TWALK" }, \ | ||
| 62 | { P9_RWALK, "P9_RWALK" }, \ | ||
| 63 | { P9_TOPEN, "P9_TOPEN" }, \ | ||
| 64 | { P9_ROPEN, "P9_ROPEN" }, \ | ||
| 65 | { P9_TCREATE, "P9_TCREATE" }, \ | ||
| 66 | { P9_RCREATE, "P9_RCREATE" }, \ | ||
| 67 | { P9_TREAD, "P9_TREAD" }, \ | ||
| 68 | { P9_RREAD, "P9_RREAD" }, \ | ||
| 69 | { P9_TWRITE, "P9_TWRITE" }, \ | ||
| 70 | { P9_RWRITE, "P9_RWRITE" }, \ | ||
| 71 | { P9_TCLUNK, "P9_TCLUNK" }, \ | ||
| 72 | { P9_RCLUNK, "P9_RCLUNK" }, \ | ||
| 73 | { P9_TREMOVE, "P9_TREMOVE" }, \ | ||
| 74 | { P9_RREMOVE, "P9_RREMOVE" }, \ | ||
| 75 | { P9_TSTAT, "P9_TSTAT" }, \ | ||
| 76 | { P9_RSTAT, "P9_RSTAT" }, \ | ||
| 77 | { P9_TWSTAT, "P9_TWSTAT" }, \ | ||
| 78 | { P9_RWSTAT, "P9_RWSTAT" }) | ||
| 79 | |||
| 80 | TRACE_EVENT(9p_client_req, | ||
| 81 | TP_PROTO(struct p9_client *clnt, int8_t type, int tag), | ||
| 82 | |||
| 83 | TP_ARGS(clnt, type, tag), | ||
| 84 | |||
| 85 | TP_STRUCT__entry( | ||
| 86 | __field( void *, clnt ) | ||
| 87 | __field( __u8, type ) | ||
| 88 | __field( __u32, tag ) | ||
| 89 | ), | ||
| 90 | |||
| 91 | TP_fast_assign( | ||
| 92 | __entry->clnt = clnt; | ||
| 93 | __entry->type = type; | ||
| 94 | __entry->tag = tag; | ||
| 95 | ), | ||
| 96 | |||
| 97 | TP_printk("client %lu request %s tag %d", | ||
| 98 | (long)__entry->clnt, show_9p_op(__entry->type), | ||
| 99 | __entry->tag) | ||
| 100 | ); | ||
| 101 | |||
| 102 | TRACE_EVENT(9p_client_res, | ||
| 103 | TP_PROTO(struct p9_client *clnt, int8_t type, int tag, int err), | ||
| 104 | |||
| 105 | TP_ARGS(clnt, type, tag, err), | ||
| 106 | |||
| 107 | TP_STRUCT__entry( | ||
| 108 | __field( void *, clnt ) | ||
| 109 | __field( __u8, type ) | ||
| 110 | __field( __u32, tag ) | ||
| 111 | __field( __u32, err ) | ||
| 112 | ), | ||
| 113 | |||
| 114 | TP_fast_assign( | ||
| 115 | __entry->clnt = clnt; | ||
| 116 | __entry->type = type; | ||
| 117 | __entry->tag = tag; | ||
| 118 | __entry->err = err; | ||
| 119 | ), | ||
| 120 | |||
| 121 | TP_printk("client %lu response %s tag %d err %d", | ||
| 122 | (long)__entry->clnt, show_9p_op(__entry->type), | ||
| 123 | __entry->tag, __entry->err) | ||
| 124 | ); | ||
| 125 | |||
| 126 | /* dump 32 bytes of protocol data */ | ||
| 127 | #define P9_PROTO_DUMP_SZ 32 | ||
| 128 | TRACE_EVENT(9p_protocol_dump, | ||
| 129 | TP_PROTO(struct p9_client *clnt, struct p9_fcall *pdu), | ||
| 130 | |||
| 131 | TP_ARGS(clnt, pdu), | ||
| 132 | |||
| 133 | TP_STRUCT__entry( | ||
| 134 | __field( void *, clnt ) | ||
| 135 | __field( __u8, type ) | ||
| 136 | __field( __u16, tag ) | ||
| 137 | __array( unsigned char, line, P9_PROTO_DUMP_SZ ) | ||
| 138 | ), | ||
| 139 | |||
| 140 | TP_fast_assign( | ||
| 141 | __entry->clnt = clnt; | ||
| 142 | __entry->type = pdu->id; | ||
| 143 | __entry->tag = pdu->tag; | ||
| 144 | memcpy(__entry->line, pdu->sdata, P9_PROTO_DUMP_SZ); | ||
| 145 | ), | ||
| 146 | TP_printk("clnt %lu %s(tag = %d)\n%.3x: " | ||
| 147 | "%02x %02x %02x %02x %02x %02x %02x %02x " | ||
| 148 | "%02x %02x %02x %02x %02x %02x %02x %02x\n" | ||
| 149 | "%.3x: " | ||
| 150 | "%02x %02x %02x %02x %02x %02x %02x %02x " | ||
| 151 | "%02x %02x %02x %02x %02x %02x %02x %02x\n", | ||
| 152 | (long)__entry->clnt, show_9p_op(__entry->type), | ||
| 153 | __entry->tag, 0, | ||
| 154 | __entry->line[0], __entry->line[1], | ||
| 155 | __entry->line[2], __entry->line[3], | ||
| 156 | __entry->line[4], __entry->line[5], | ||
| 157 | __entry->line[6], __entry->line[7], | ||
| 158 | __entry->line[8], __entry->line[9], | ||
| 159 | __entry->line[10], __entry->line[11], | ||
| 160 | __entry->line[12], __entry->line[13], | ||
| 161 | __entry->line[14], __entry->line[15], | ||
| 162 | 16, | ||
| 163 | __entry->line[16], __entry->line[17], | ||
| 164 | __entry->line[18], __entry->line[19], | ||
| 165 | __entry->line[20], __entry->line[21], | ||
| 166 | __entry->line[22], __entry->line[23], | ||
| 167 | __entry->line[24], __entry->line[25], | ||
| 168 | __entry->line[26], __entry->line[27], | ||
| 169 | __entry->line[28], __entry->line[29], | ||
| 170 | __entry->line[30], __entry->line[31]) | ||
| 171 | ); | ||
| 172 | |||
| 173 | #endif /* _TRACE_9P_H */ | ||
| 174 | |||
| 175 | /* This part must be outside protection */ | ||
| 176 | #include <trace/define_trace.h> | ||
