Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (c) 2017, 2018 Oracle. All rights reserved.
4 *
5 * Trace point definitions for the "rpcrdma" subsystem.
6 */
7#undef TRACE_SYSTEM
8#define TRACE_SYSTEM rpcrdma
9
10#if !defined(_TRACE_RPCRDMA_H) || defined(TRACE_HEADER_MULTI_READ)
11#define _TRACE_RPCRDMA_H
12
13#include <linux/scatterlist.h>
14#include <linux/sunrpc/rpc_rdma_cid.h>
15#include <linux/tracepoint.h>
16#include <rdma/ib_cm.h>
17
18#include <trace/misc/rdma.h>
19#include <trace/misc/sunrpc.h>
20
21/**
22 ** Event classes
23 **/
24
25DECLARE_EVENT_CLASS(rpcrdma_completion_class,
26 TP_PROTO(
27 const struct ib_wc *wc,
28 const struct rpc_rdma_cid *cid
29 ),
30
31 TP_ARGS(wc, cid),
32
33 TP_STRUCT__entry(
34 __field(u32, cq_id)
35 __field(int, completion_id)
36 __field(unsigned long, status)
37 __field(unsigned int, vendor_err)
38 ),
39
40 TP_fast_assign(
41 __entry->cq_id = cid->ci_queue_id;
42 __entry->completion_id = cid->ci_completion_id;
43 __entry->status = wc->status;
44 if (wc->status)
45 __entry->vendor_err = wc->vendor_err;
46 else
47 __entry->vendor_err = 0;
48 ),
49
50 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x)",
51 __entry->cq_id, __entry->completion_id,
52 rdma_show_wc_status(__entry->status),
53 __entry->status, __entry->vendor_err
54 )
55);
56
57#define DEFINE_COMPLETION_EVENT(name) \
58 DEFINE_EVENT(rpcrdma_completion_class, name, \
59 TP_PROTO( \
60 const struct ib_wc *wc, \
61 const struct rpc_rdma_cid *cid \
62 ), \
63 TP_ARGS(wc, cid))
64
65DECLARE_EVENT_CLASS(rpcrdma_send_completion_class,
66 TP_PROTO(
67 const struct ib_wc *wc,
68 const struct rpc_rdma_cid *cid
69 ),
70
71 TP_ARGS(wc, cid),
72
73 TP_STRUCT__entry(
74 __field(u32, cq_id)
75 __field(int, completion_id)
76 ),
77
78 TP_fast_assign(
79 __entry->cq_id = cid->ci_queue_id;
80 __entry->completion_id = cid->ci_completion_id;
81 ),
82
83 TP_printk("cq.id=%u cid=%d",
84 __entry->cq_id, __entry->completion_id
85 )
86);
87
88#define DEFINE_SEND_COMPLETION_EVENT(name) \
89 DEFINE_EVENT(rpcrdma_send_completion_class, name, \
90 TP_PROTO( \
91 const struct ib_wc *wc, \
92 const struct rpc_rdma_cid *cid \
93 ), \
94 TP_ARGS(wc, cid))
95
96DECLARE_EVENT_CLASS(rpcrdma_send_flush_class,
97 TP_PROTO(
98 const struct ib_wc *wc,
99 const struct rpc_rdma_cid *cid
100 ),
101
102 TP_ARGS(wc, cid),
103
104 TP_STRUCT__entry(
105 __field(u32, cq_id)
106 __field(int, completion_id)
107 __field(unsigned long, status)
108 __field(unsigned int, vendor_err)
109 ),
110
111 TP_fast_assign(
112 __entry->cq_id = cid->ci_queue_id;
113 __entry->completion_id = cid->ci_completion_id;
114 __entry->status = wc->status;
115 __entry->vendor_err = wc->vendor_err;
116 ),
117
118 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x)",
119 __entry->cq_id, __entry->completion_id,
120 rdma_show_wc_status(__entry->status),
121 __entry->status, __entry->vendor_err
122 )
123);
124
125#define DEFINE_SEND_FLUSH_EVENT(name) \
126 DEFINE_EVENT(rpcrdma_send_flush_class, name, \
127 TP_PROTO( \
128 const struct ib_wc *wc, \
129 const struct rpc_rdma_cid *cid \
130 ), \
131 TP_ARGS(wc, cid))
132
133DECLARE_EVENT_CLASS(rpcrdma_mr_completion_class,
134 TP_PROTO(
135 const struct ib_wc *wc,
136 const struct rpc_rdma_cid *cid
137 ),
138
139 TP_ARGS(wc, cid),
140
141 TP_STRUCT__entry(
142 __field(u32, cq_id)
143 __field(int, completion_id)
144 __field(unsigned long, status)
145 __field(unsigned int, vendor_err)
146 ),
147
148 TP_fast_assign(
149 __entry->cq_id = cid->ci_queue_id;
150 __entry->completion_id = cid->ci_completion_id;
151 __entry->status = wc->status;
152 if (wc->status)
153 __entry->vendor_err = wc->vendor_err;
154 else
155 __entry->vendor_err = 0;
156 ),
157
158 TP_printk("cq.id=%u mr.id=%d status=%s (%lu/0x%x)",
159 __entry->cq_id, __entry->completion_id,
160 rdma_show_wc_status(__entry->status),
161 __entry->status, __entry->vendor_err
162 )
163);
164
165#define DEFINE_MR_COMPLETION_EVENT(name) \
166 DEFINE_EVENT(rpcrdma_mr_completion_class, name, \
167 TP_PROTO( \
168 const struct ib_wc *wc, \
169 const struct rpc_rdma_cid *cid \
170 ), \
171 TP_ARGS(wc, cid))
172
173DECLARE_EVENT_CLASS(rpcrdma_receive_completion_class,
174 TP_PROTO(
175 const struct ib_wc *wc,
176 const struct rpc_rdma_cid *cid
177 ),
178
179 TP_ARGS(wc, cid),
180
181 TP_STRUCT__entry(
182 __field(u32, cq_id)
183 __field(int, completion_id)
184 __field(u32, received)
185 __field(unsigned long, status)
186 __field(unsigned int, vendor_err)
187 ),
188
189 TP_fast_assign(
190 __entry->cq_id = cid->ci_queue_id;
191 __entry->completion_id = cid->ci_completion_id;
192 __entry->status = wc->status;
193 if (wc->status) {
194 __entry->received = 0;
195 __entry->vendor_err = wc->vendor_err;
196 } else {
197 __entry->received = wc->byte_len;
198 __entry->vendor_err = 0;
199 }
200 ),
201
202 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x) received=%u",
203 __entry->cq_id, __entry->completion_id,
204 rdma_show_wc_status(__entry->status),
205 __entry->status, __entry->vendor_err,
206 __entry->received
207 )
208);
209
210#define DEFINE_RECEIVE_COMPLETION_EVENT(name) \
211 DEFINE_EVENT(rpcrdma_receive_completion_class, name, \
212 TP_PROTO( \
213 const struct ib_wc *wc, \
214 const struct rpc_rdma_cid *cid \
215 ), \
216 TP_ARGS(wc, cid))
217
218DECLARE_EVENT_CLASS(rpcrdma_receive_success_class,
219 TP_PROTO(
220 const struct ib_wc *wc,
221 const struct rpc_rdma_cid *cid
222 ),
223
224 TP_ARGS(wc, cid),
225
226 TP_STRUCT__entry(
227 __field(u32, cq_id)
228 __field(int, completion_id)
229 __field(u32, received)
230 ),
231
232 TP_fast_assign(
233 __entry->cq_id = cid->ci_queue_id;
234 __entry->completion_id = cid->ci_completion_id;
235 __entry->received = wc->byte_len;
236 ),
237
238 TP_printk("cq.id=%u cid=%d received=%u",
239 __entry->cq_id, __entry->completion_id,
240 __entry->received
241 )
242);
243
244#define DEFINE_RECEIVE_SUCCESS_EVENT(name) \
245 DEFINE_EVENT(rpcrdma_receive_success_class, name, \
246 TP_PROTO( \
247 const struct ib_wc *wc, \
248 const struct rpc_rdma_cid *cid \
249 ), \
250 TP_ARGS(wc, cid))
251
252DECLARE_EVENT_CLASS(rpcrdma_receive_flush_class,
253 TP_PROTO(
254 const struct ib_wc *wc,
255 const struct rpc_rdma_cid *cid
256 ),
257
258 TP_ARGS(wc, cid),
259
260 TP_STRUCT__entry(
261 __field(u32, cq_id)
262 __field(int, completion_id)
263 __field(unsigned long, status)
264 __field(unsigned int, vendor_err)
265 ),
266
267 TP_fast_assign(
268 __entry->cq_id = cid->ci_queue_id;
269 __entry->completion_id = cid->ci_completion_id;
270 __entry->status = wc->status;
271 __entry->vendor_err = wc->vendor_err;
272 ),
273
274 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x)",
275 __entry->cq_id, __entry->completion_id,
276 rdma_show_wc_status(__entry->status),
277 __entry->status, __entry->vendor_err
278 )
279);
280
281#define DEFINE_RECEIVE_FLUSH_EVENT(name) \
282 DEFINE_EVENT(rpcrdma_receive_flush_class, name, \
283 TP_PROTO( \
284 const struct ib_wc *wc, \
285 const struct rpc_rdma_cid *cid \
286 ), \
287 TP_ARGS(wc, cid))
288
289DECLARE_EVENT_CLASS(xprtrdma_reply_class,
290 TP_PROTO(
291 const struct rpcrdma_rep *rep
292 ),
293
294 TP_ARGS(rep),
295
296 TP_STRUCT__entry(
297 __field(u32, xid)
298 __field(u32, version)
299 __field(u32, proc)
300 __string(addr, rpcrdma_addrstr(rep->rr_rxprt))
301 __string(port, rpcrdma_portstr(rep->rr_rxprt))
302 ),
303
304 TP_fast_assign(
305 __entry->xid = be32_to_cpu(rep->rr_xid);
306 __entry->version = be32_to_cpu(rep->rr_vers);
307 __entry->proc = be32_to_cpu(rep->rr_proc);
308 __assign_str(addr, rpcrdma_addrstr(rep->rr_rxprt));
309 __assign_str(port, rpcrdma_portstr(rep->rr_rxprt));
310 ),
311
312 TP_printk("peer=[%s]:%s xid=0x%08x version=%u proc=%u",
313 __get_str(addr), __get_str(port),
314 __entry->xid, __entry->version, __entry->proc
315 )
316);
317
318#define DEFINE_REPLY_EVENT(name) \
319 DEFINE_EVENT(xprtrdma_reply_class, \
320 xprtrdma_reply_##name##_err, \
321 TP_PROTO( \
322 const struct rpcrdma_rep *rep \
323 ), \
324 TP_ARGS(rep))
325
326DECLARE_EVENT_CLASS(xprtrdma_rxprt,
327 TP_PROTO(
328 const struct rpcrdma_xprt *r_xprt
329 ),
330
331 TP_ARGS(r_xprt),
332
333 TP_STRUCT__entry(
334 __string(addr, rpcrdma_addrstr(r_xprt))
335 __string(port, rpcrdma_portstr(r_xprt))
336 ),
337
338 TP_fast_assign(
339 __assign_str(addr, rpcrdma_addrstr(r_xprt));
340 __assign_str(port, rpcrdma_portstr(r_xprt));
341 ),
342
343 TP_printk("peer=[%s]:%s",
344 __get_str(addr), __get_str(port)
345 )
346);
347
348#define DEFINE_RXPRT_EVENT(name) \
349 DEFINE_EVENT(xprtrdma_rxprt, name, \
350 TP_PROTO( \
351 const struct rpcrdma_xprt *r_xprt \
352 ), \
353 TP_ARGS(r_xprt))
354
355DECLARE_EVENT_CLASS(xprtrdma_connect_class,
356 TP_PROTO(
357 const struct rpcrdma_xprt *r_xprt,
358 int rc
359 ),
360
361 TP_ARGS(r_xprt, rc),
362
363 TP_STRUCT__entry(
364 __field(int, rc)
365 __field(int, connect_status)
366 __string(addr, rpcrdma_addrstr(r_xprt))
367 __string(port, rpcrdma_portstr(r_xprt))
368 ),
369
370 TP_fast_assign(
371 __entry->rc = rc;
372 __entry->connect_status = r_xprt->rx_ep->re_connect_status;
373 __assign_str(addr, rpcrdma_addrstr(r_xprt));
374 __assign_str(port, rpcrdma_portstr(r_xprt));
375 ),
376
377 TP_printk("peer=[%s]:%s rc=%d connection status=%d",
378 __get_str(addr), __get_str(port),
379 __entry->rc, __entry->connect_status
380 )
381);
382
383#define DEFINE_CONN_EVENT(name) \
384 DEFINE_EVENT(xprtrdma_connect_class, xprtrdma_##name, \
385 TP_PROTO( \
386 const struct rpcrdma_xprt *r_xprt, \
387 int rc \
388 ), \
389 TP_ARGS(r_xprt, rc))
390
391DECLARE_EVENT_CLASS(xprtrdma_rdch_event,
392 TP_PROTO(
393 const struct rpc_task *task,
394 unsigned int pos,
395 struct rpcrdma_mr *mr,
396 int nsegs
397 ),
398
399 TP_ARGS(task, pos, mr, nsegs),
400
401 TP_STRUCT__entry(
402 __field(unsigned int, task_id)
403 __field(unsigned int, client_id)
404 __field(unsigned int, pos)
405 __field(int, nents)
406 __field(u32, handle)
407 __field(u32, length)
408 __field(u64, offset)
409 __field(int, nsegs)
410 ),
411
412 TP_fast_assign(
413 __entry->task_id = task->tk_pid;
414 __entry->client_id = task->tk_client->cl_clid;
415 __entry->pos = pos;
416 __entry->nents = mr->mr_nents;
417 __entry->handle = mr->mr_handle;
418 __entry->length = mr->mr_length;
419 __entry->offset = mr->mr_offset;
420 __entry->nsegs = nsegs;
421 ),
422
423 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
424 " pos=%u %u@0x%016llx:0x%08x (%s)",
425 __entry->task_id, __entry->client_id,
426 __entry->pos, __entry->length,
427 (unsigned long long)__entry->offset, __entry->handle,
428 __entry->nents < __entry->nsegs ? "more" : "last"
429 )
430);
431
432#define DEFINE_RDCH_EVENT(name) \
433 DEFINE_EVENT(xprtrdma_rdch_event, xprtrdma_chunk_##name,\
434 TP_PROTO( \
435 const struct rpc_task *task, \
436 unsigned int pos, \
437 struct rpcrdma_mr *mr, \
438 int nsegs \
439 ), \
440 TP_ARGS(task, pos, mr, nsegs))
441
442DECLARE_EVENT_CLASS(xprtrdma_wrch_event,
443 TP_PROTO(
444 const struct rpc_task *task,
445 struct rpcrdma_mr *mr,
446 int nsegs
447 ),
448
449 TP_ARGS(task, mr, nsegs),
450
451 TP_STRUCT__entry(
452 __field(unsigned int, task_id)
453 __field(unsigned int, client_id)
454 __field(int, nents)
455 __field(u32, handle)
456 __field(u32, length)
457 __field(u64, offset)
458 __field(int, nsegs)
459 ),
460
461 TP_fast_assign(
462 __entry->task_id = task->tk_pid;
463 __entry->client_id = task->tk_client->cl_clid;
464 __entry->nents = mr->mr_nents;
465 __entry->handle = mr->mr_handle;
466 __entry->length = mr->mr_length;
467 __entry->offset = mr->mr_offset;
468 __entry->nsegs = nsegs;
469 ),
470
471 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
472 " %u@0x%016llx:0x%08x (%s)",
473 __entry->task_id, __entry->client_id,
474 __entry->length, (unsigned long long)__entry->offset,
475 __entry->handle,
476 __entry->nents < __entry->nsegs ? "more" : "last"
477 )
478);
479
480#define DEFINE_WRCH_EVENT(name) \
481 DEFINE_EVENT(xprtrdma_wrch_event, xprtrdma_chunk_##name,\
482 TP_PROTO( \
483 const struct rpc_task *task, \
484 struct rpcrdma_mr *mr, \
485 int nsegs \
486 ), \
487 TP_ARGS(task, mr, nsegs))
488
489TRACE_DEFINE_ENUM(DMA_BIDIRECTIONAL);
490TRACE_DEFINE_ENUM(DMA_TO_DEVICE);
491TRACE_DEFINE_ENUM(DMA_FROM_DEVICE);
492TRACE_DEFINE_ENUM(DMA_NONE);
493
494#define xprtrdma_show_direction(x) \
495 __print_symbolic(x, \
496 { DMA_BIDIRECTIONAL, "BIDIR" }, \
497 { DMA_TO_DEVICE, "TO_DEVICE" }, \
498 { DMA_FROM_DEVICE, "FROM_DEVICE" }, \
499 { DMA_NONE, "NONE" })
500
501DECLARE_EVENT_CLASS(xprtrdma_mr_class,
502 TP_PROTO(
503 const struct rpcrdma_mr *mr
504 ),
505
506 TP_ARGS(mr),
507
508 TP_STRUCT__entry(
509 __field(unsigned int, task_id)
510 __field(unsigned int, client_id)
511 __field(u32, mr_id)
512 __field(int, nents)
513 __field(u32, handle)
514 __field(u32, length)
515 __field(u64, offset)
516 __field(u32, dir)
517 ),
518
519 TP_fast_assign(
520 const struct rpcrdma_req *req = mr->mr_req;
521
522 if (req) {
523 const struct rpc_task *task = req->rl_slot.rq_task;
524
525 __entry->task_id = task->tk_pid;
526 __entry->client_id = task->tk_client->cl_clid;
527 } else {
528 __entry->task_id = 0;
529 __entry->client_id = -1;
530 }
531 __entry->mr_id = mr->mr_ibmr->res.id;
532 __entry->nents = mr->mr_nents;
533 __entry->handle = mr->mr_handle;
534 __entry->length = mr->mr_length;
535 __entry->offset = mr->mr_offset;
536 __entry->dir = mr->mr_dir;
537 ),
538
539 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
540 " mr.id=%u nents=%d %u@0x%016llx:0x%08x (%s)",
541 __entry->task_id, __entry->client_id,
542 __entry->mr_id, __entry->nents, __entry->length,
543 (unsigned long long)__entry->offset, __entry->handle,
544 xprtrdma_show_direction(__entry->dir)
545 )
546);
547
548#define DEFINE_MR_EVENT(name) \
549 DEFINE_EVENT(xprtrdma_mr_class, \
550 xprtrdma_mr_##name, \
551 TP_PROTO( \
552 const struct rpcrdma_mr *mr \
553 ), \
554 TP_ARGS(mr))
555
556DECLARE_EVENT_CLASS(xprtrdma_anonymous_mr_class,
557 TP_PROTO(
558 const struct rpcrdma_mr *mr
559 ),
560
561 TP_ARGS(mr),
562
563 TP_STRUCT__entry(
564 __field(u32, mr_id)
565 __field(int, nents)
566 __field(u32, handle)
567 __field(u32, length)
568 __field(u64, offset)
569 __field(u32, dir)
570 ),
571
572 TP_fast_assign(
573 __entry->mr_id = mr->mr_ibmr->res.id;
574 __entry->nents = mr->mr_nents;
575 __entry->handle = mr->mr_handle;
576 __entry->length = mr->mr_length;
577 __entry->offset = mr->mr_offset;
578 __entry->dir = mr->mr_dir;
579 ),
580
581 TP_printk("mr.id=%u nents=%d %u@0x%016llx:0x%08x (%s)",
582 __entry->mr_id, __entry->nents, __entry->length,
583 (unsigned long long)__entry->offset, __entry->handle,
584 xprtrdma_show_direction(__entry->dir)
585 )
586);
587
588#define DEFINE_ANON_MR_EVENT(name) \
589 DEFINE_EVENT(xprtrdma_anonymous_mr_class, \
590 xprtrdma_mr_##name, \
591 TP_PROTO( \
592 const struct rpcrdma_mr *mr \
593 ), \
594 TP_ARGS(mr))
595
596DECLARE_EVENT_CLASS(xprtrdma_callback_class,
597 TP_PROTO(
598 const struct rpcrdma_xprt *r_xprt,
599 const struct rpc_rqst *rqst
600 ),
601
602 TP_ARGS(r_xprt, rqst),
603
604 TP_STRUCT__entry(
605 __field(u32, xid)
606 __string(addr, rpcrdma_addrstr(r_xprt))
607 __string(port, rpcrdma_portstr(r_xprt))
608 ),
609
610 TP_fast_assign(
611 __entry->xid = be32_to_cpu(rqst->rq_xid);
612 __assign_str(addr, rpcrdma_addrstr(r_xprt));
613 __assign_str(port, rpcrdma_portstr(r_xprt));
614 ),
615
616 TP_printk("peer=[%s]:%s xid=0x%08x",
617 __get_str(addr), __get_str(port), __entry->xid
618 )
619);
620
621#define DEFINE_CALLBACK_EVENT(name) \
622 DEFINE_EVENT(xprtrdma_callback_class, \
623 xprtrdma_cb_##name, \
624 TP_PROTO( \
625 const struct rpcrdma_xprt *r_xprt, \
626 const struct rpc_rqst *rqst \
627 ), \
628 TP_ARGS(r_xprt, rqst))
629
630/**
631 ** Connection events
632 **/
633
634TRACE_EVENT(xprtrdma_inline_thresh,
635 TP_PROTO(
636 const struct rpcrdma_ep *ep
637 ),
638
639 TP_ARGS(ep),
640
641 TP_STRUCT__entry(
642 __field(unsigned int, inline_send)
643 __field(unsigned int, inline_recv)
644 __field(unsigned int, max_send)
645 __field(unsigned int, max_recv)
646 __array(unsigned char, srcaddr, sizeof(struct sockaddr_in6))
647 __array(unsigned char, dstaddr, sizeof(struct sockaddr_in6))
648 ),
649
650 TP_fast_assign(
651 const struct rdma_cm_id *id = ep->re_id;
652
653 __entry->inline_send = ep->re_inline_send;
654 __entry->inline_recv = ep->re_inline_recv;
655 __entry->max_send = ep->re_max_inline_send;
656 __entry->max_recv = ep->re_max_inline_recv;
657 memcpy(__entry->srcaddr, &id->route.addr.src_addr,
658 sizeof(struct sockaddr_in6));
659 memcpy(__entry->dstaddr, &id->route.addr.dst_addr,
660 sizeof(struct sockaddr_in6));
661 ),
662
663 TP_printk("%pISpc -> %pISpc neg send/recv=%u/%u, calc send/recv=%u/%u",
664 __entry->srcaddr, __entry->dstaddr,
665 __entry->inline_send, __entry->inline_recv,
666 __entry->max_send, __entry->max_recv
667 )
668);
669
670DEFINE_CONN_EVENT(connect);
671DEFINE_CONN_EVENT(disconnect);
672
673DEFINE_RXPRT_EVENT(xprtrdma_op_inject_dsc);
674
675TRACE_EVENT(xprtrdma_op_connect,
676 TP_PROTO(
677 const struct rpcrdma_xprt *r_xprt,
678 unsigned long delay
679 ),
680
681 TP_ARGS(r_xprt, delay),
682
683 TP_STRUCT__entry(
684 __field(unsigned long, delay)
685 __string(addr, rpcrdma_addrstr(r_xprt))
686 __string(port, rpcrdma_portstr(r_xprt))
687 ),
688
689 TP_fast_assign(
690 __entry->delay = delay;
691 __assign_str(addr, rpcrdma_addrstr(r_xprt));
692 __assign_str(port, rpcrdma_portstr(r_xprt));
693 ),
694
695 TP_printk("peer=[%s]:%s delay=%lu",
696 __get_str(addr), __get_str(port), __entry->delay
697 )
698);
699
700
701TRACE_EVENT(xprtrdma_op_set_cto,
702 TP_PROTO(
703 const struct rpcrdma_xprt *r_xprt,
704 unsigned long connect,
705 unsigned long reconnect
706 ),
707
708 TP_ARGS(r_xprt, connect, reconnect),
709
710 TP_STRUCT__entry(
711 __field(unsigned long, connect)
712 __field(unsigned long, reconnect)
713 __string(addr, rpcrdma_addrstr(r_xprt))
714 __string(port, rpcrdma_portstr(r_xprt))
715 ),
716
717 TP_fast_assign(
718 __entry->connect = connect;
719 __entry->reconnect = reconnect;
720 __assign_str(addr, rpcrdma_addrstr(r_xprt));
721 __assign_str(port, rpcrdma_portstr(r_xprt));
722 ),
723
724 TP_printk("peer=[%s]:%s connect=%lu reconnect=%lu",
725 __get_str(addr), __get_str(port),
726 __entry->connect / HZ, __entry->reconnect / HZ
727 )
728);
729
730/**
731 ** Call events
732 **/
733
734TRACE_EVENT(xprtrdma_createmrs,
735 TP_PROTO(
736 const struct rpcrdma_xprt *r_xprt,
737 unsigned int count
738 ),
739
740 TP_ARGS(r_xprt, count),
741
742 TP_STRUCT__entry(
743 __string(addr, rpcrdma_addrstr(r_xprt))
744 __string(port, rpcrdma_portstr(r_xprt))
745 __field(unsigned int, count)
746 ),
747
748 TP_fast_assign(
749 __entry->count = count;
750 __assign_str(addr, rpcrdma_addrstr(r_xprt));
751 __assign_str(port, rpcrdma_portstr(r_xprt));
752 ),
753
754 TP_printk("peer=[%s]:%s created %u MRs",
755 __get_str(addr), __get_str(port), __entry->count
756 )
757);
758
759TRACE_EVENT(xprtrdma_nomrs_err,
760 TP_PROTO(
761 const struct rpcrdma_xprt *r_xprt,
762 const struct rpcrdma_req *req
763 ),
764
765 TP_ARGS(r_xprt, req),
766
767 TP_STRUCT__entry(
768 __field(unsigned int, task_id)
769 __field(unsigned int, client_id)
770 __string(addr, rpcrdma_addrstr(r_xprt))
771 __string(port, rpcrdma_portstr(r_xprt))
772 ),
773
774 TP_fast_assign(
775 const struct rpc_rqst *rqst = &req->rl_slot;
776
777 __entry->task_id = rqst->rq_task->tk_pid;
778 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
779 __assign_str(addr, rpcrdma_addrstr(r_xprt));
780 __assign_str(port, rpcrdma_portstr(r_xprt));
781 ),
782
783 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " peer=[%s]:%s",
784 __entry->task_id, __entry->client_id,
785 __get_str(addr), __get_str(port)
786 )
787);
788
789DEFINE_RDCH_EVENT(read);
790DEFINE_WRCH_EVENT(write);
791DEFINE_WRCH_EVENT(reply);
792DEFINE_WRCH_EVENT(wp);
793
794TRACE_DEFINE_ENUM(rpcrdma_noch);
795TRACE_DEFINE_ENUM(rpcrdma_noch_pullup);
796TRACE_DEFINE_ENUM(rpcrdma_noch_mapped);
797TRACE_DEFINE_ENUM(rpcrdma_readch);
798TRACE_DEFINE_ENUM(rpcrdma_areadch);
799TRACE_DEFINE_ENUM(rpcrdma_writech);
800TRACE_DEFINE_ENUM(rpcrdma_replych);
801
802#define xprtrdma_show_chunktype(x) \
803 __print_symbolic(x, \
804 { rpcrdma_noch, "inline" }, \
805 { rpcrdma_noch_pullup, "pullup" }, \
806 { rpcrdma_noch_mapped, "mapped" }, \
807 { rpcrdma_readch, "read list" }, \
808 { rpcrdma_areadch, "*read list" }, \
809 { rpcrdma_writech, "write list" }, \
810 { rpcrdma_replych, "reply chunk" })
811
812TRACE_EVENT(xprtrdma_marshal,
813 TP_PROTO(
814 const struct rpcrdma_req *req,
815 unsigned int rtype,
816 unsigned int wtype
817 ),
818
819 TP_ARGS(req, rtype, wtype),
820
821 TP_STRUCT__entry(
822 __field(unsigned int, task_id)
823 __field(unsigned int, client_id)
824 __field(u32, xid)
825 __field(unsigned int, hdrlen)
826 __field(unsigned int, headlen)
827 __field(unsigned int, pagelen)
828 __field(unsigned int, taillen)
829 __field(unsigned int, rtype)
830 __field(unsigned int, wtype)
831 ),
832
833 TP_fast_assign(
834 const struct rpc_rqst *rqst = &req->rl_slot;
835
836 __entry->task_id = rqst->rq_task->tk_pid;
837 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
838 __entry->xid = be32_to_cpu(rqst->rq_xid);
839 __entry->hdrlen = req->rl_hdrbuf.len;
840 __entry->headlen = rqst->rq_snd_buf.head[0].iov_len;
841 __entry->pagelen = rqst->rq_snd_buf.page_len;
842 __entry->taillen = rqst->rq_snd_buf.tail[0].iov_len;
843 __entry->rtype = rtype;
844 __entry->wtype = wtype;
845 ),
846
847 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
848 " xid=0x%08x hdr=%u xdr=%u/%u/%u %s/%s",
849 __entry->task_id, __entry->client_id, __entry->xid,
850 __entry->hdrlen,
851 __entry->headlen, __entry->pagelen, __entry->taillen,
852 xprtrdma_show_chunktype(__entry->rtype),
853 xprtrdma_show_chunktype(__entry->wtype)
854 )
855);
856
857TRACE_EVENT(xprtrdma_marshal_failed,
858 TP_PROTO(const struct rpc_rqst *rqst,
859 int ret
860 ),
861
862 TP_ARGS(rqst, ret),
863
864 TP_STRUCT__entry(
865 __field(unsigned int, task_id)
866 __field(unsigned int, client_id)
867 __field(u32, xid)
868 __field(int, ret)
869 ),
870
871 TP_fast_assign(
872 __entry->task_id = rqst->rq_task->tk_pid;
873 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
874 __entry->xid = be32_to_cpu(rqst->rq_xid);
875 __entry->ret = ret;
876 ),
877
878 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x ret=%d",
879 __entry->task_id, __entry->client_id, __entry->xid,
880 __entry->ret
881 )
882);
883
884TRACE_EVENT(xprtrdma_prepsend_failed,
885 TP_PROTO(const struct rpc_rqst *rqst,
886 int ret
887 ),
888
889 TP_ARGS(rqst, ret),
890
891 TP_STRUCT__entry(
892 __field(unsigned int, task_id)
893 __field(unsigned int, client_id)
894 __field(u32, xid)
895 __field(int, ret)
896 ),
897
898 TP_fast_assign(
899 __entry->task_id = rqst->rq_task->tk_pid;
900 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
901 __entry->xid = be32_to_cpu(rqst->rq_xid);
902 __entry->ret = ret;
903 ),
904
905 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x ret=%d",
906 __entry->task_id, __entry->client_id, __entry->xid,
907 __entry->ret
908 )
909);
910
911TRACE_EVENT(xprtrdma_post_send,
912 TP_PROTO(
913 const struct rpcrdma_req *req
914 ),
915
916 TP_ARGS(req),
917
918 TP_STRUCT__entry(
919 __field(u32, cq_id)
920 __field(int, completion_id)
921 __field(unsigned int, task_id)
922 __field(unsigned int, client_id)
923 __field(int, num_sge)
924 __field(int, signaled)
925 ),
926
927 TP_fast_assign(
928 const struct rpc_rqst *rqst = &req->rl_slot;
929 const struct rpcrdma_sendctx *sc = req->rl_sendctx;
930
931 __entry->cq_id = sc->sc_cid.ci_queue_id;
932 __entry->completion_id = sc->sc_cid.ci_completion_id;
933 __entry->task_id = rqst->rq_task->tk_pid;
934 __entry->client_id = rqst->rq_task->tk_client ?
935 rqst->rq_task->tk_client->cl_clid : -1;
936 __entry->num_sge = req->rl_wr.num_sge;
937 __entry->signaled = req->rl_wr.send_flags & IB_SEND_SIGNALED;
938 ),
939
940 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " cq.id=%u cid=%d (%d SGE%s) %s",
941 __entry->task_id, __entry->client_id,
942 __entry->cq_id, __entry->completion_id,
943 __entry->num_sge, (__entry->num_sge == 1 ? "" : "s"),
944 (__entry->signaled ? "signaled" : "")
945 )
946);
947
948TRACE_EVENT(xprtrdma_post_send_err,
949 TP_PROTO(
950 const struct rpcrdma_xprt *r_xprt,
951 const struct rpcrdma_req *req,
952 int rc
953 ),
954
955 TP_ARGS(r_xprt, req, rc),
956
957 TP_STRUCT__entry(
958 __field(u32, cq_id)
959 __field(unsigned int, task_id)
960 __field(unsigned int, client_id)
961 __field(int, rc)
962 ),
963
964 TP_fast_assign(
965 const struct rpc_rqst *rqst = &req->rl_slot;
966 const struct rpcrdma_ep *ep = r_xprt->rx_ep;
967
968 __entry->cq_id = ep ? ep->re_attr.recv_cq->res.id : 0;
969 __entry->task_id = rqst->rq_task->tk_pid;
970 __entry->client_id = rqst->rq_task->tk_client ?
971 rqst->rq_task->tk_client->cl_clid : -1;
972 __entry->rc = rc;
973 ),
974
975 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " cq.id=%u rc=%d",
976 __entry->task_id, __entry->client_id,
977 __entry->cq_id, __entry->rc
978 )
979);
980
981TRACE_EVENT(xprtrdma_post_recv,
982 TP_PROTO(
983 const struct rpcrdma_rep *rep
984 ),
985
986 TP_ARGS(rep),
987
988 TP_STRUCT__entry(
989 __field(u32, cq_id)
990 __field(int, completion_id)
991 ),
992
993 TP_fast_assign(
994 __entry->cq_id = rep->rr_cid.ci_queue_id;
995 __entry->completion_id = rep->rr_cid.ci_completion_id;
996 ),
997
998 TP_printk("cq.id=%d cid=%d",
999 __entry->cq_id, __entry->completion_id
1000 )
1001);
1002
1003TRACE_EVENT(xprtrdma_post_recvs,
1004 TP_PROTO(
1005 const struct rpcrdma_xprt *r_xprt,
1006 unsigned int count
1007 ),
1008
1009 TP_ARGS(r_xprt, count),
1010
1011 TP_STRUCT__entry(
1012 __field(u32, cq_id)
1013 __field(unsigned int, count)
1014 __field(int, posted)
1015 __string(addr, rpcrdma_addrstr(r_xprt))
1016 __string(port, rpcrdma_portstr(r_xprt))
1017 ),
1018
1019 TP_fast_assign(
1020 const struct rpcrdma_ep *ep = r_xprt->rx_ep;
1021
1022 __entry->cq_id = ep->re_attr.recv_cq->res.id;
1023 __entry->count = count;
1024 __entry->posted = ep->re_receive_count;
1025 __assign_str(addr, rpcrdma_addrstr(r_xprt));
1026 __assign_str(port, rpcrdma_portstr(r_xprt));
1027 ),
1028
1029 TP_printk("peer=[%s]:%s cq.id=%d %u new recvs, %d active",
1030 __get_str(addr), __get_str(port), __entry->cq_id,
1031 __entry->count, __entry->posted
1032 )
1033);
1034
1035TRACE_EVENT(xprtrdma_post_recvs_err,
1036 TP_PROTO(
1037 const struct rpcrdma_xprt *r_xprt,
1038 int status
1039 ),
1040
1041 TP_ARGS(r_xprt, status),
1042
1043 TP_STRUCT__entry(
1044 __field(u32, cq_id)
1045 __field(int, status)
1046 __string(addr, rpcrdma_addrstr(r_xprt))
1047 __string(port, rpcrdma_portstr(r_xprt))
1048 ),
1049
1050 TP_fast_assign(
1051 const struct rpcrdma_ep *ep = r_xprt->rx_ep;
1052
1053 __entry->cq_id = ep->re_attr.recv_cq->res.id;
1054 __entry->status = status;
1055 __assign_str(addr, rpcrdma_addrstr(r_xprt));
1056 __assign_str(port, rpcrdma_portstr(r_xprt));
1057 ),
1058
1059 TP_printk("peer=[%s]:%s cq.id=%d rc=%d",
1060 __get_str(addr), __get_str(port), __entry->cq_id,
1061 __entry->status
1062 )
1063);
1064
1065TRACE_EVENT(xprtrdma_post_linv_err,
1066 TP_PROTO(
1067 const struct rpcrdma_req *req,
1068 int status
1069 ),
1070
1071 TP_ARGS(req, status),
1072
1073 TP_STRUCT__entry(
1074 __field(unsigned int, task_id)
1075 __field(unsigned int, client_id)
1076 __field(int, status)
1077 ),
1078
1079 TP_fast_assign(
1080 const struct rpc_task *task = req->rl_slot.rq_task;
1081
1082 __entry->task_id = task->tk_pid;
1083 __entry->client_id = task->tk_client->cl_clid;
1084 __entry->status = status;
1085 ),
1086
1087 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " status=%d",
1088 __entry->task_id, __entry->client_id, __entry->status
1089 )
1090);
1091
1092/**
1093 ** Completion events
1094 **/
1095
1096DEFINE_RECEIVE_COMPLETION_EVENT(xprtrdma_wc_receive);
1097
1098DEFINE_COMPLETION_EVENT(xprtrdma_wc_send);
1099DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_fastreg);
1100DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_li);
1101DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_li_wake);
1102DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_li_done);
1103
1104TRACE_EVENT(xprtrdma_frwr_alloc,
1105 TP_PROTO(
1106 const struct rpcrdma_mr *mr,
1107 int rc
1108 ),
1109
1110 TP_ARGS(mr, rc),
1111
1112 TP_STRUCT__entry(
1113 __field(u32, mr_id)
1114 __field(int, rc)
1115 ),
1116
1117 TP_fast_assign(
1118 __entry->mr_id = mr->mr_ibmr->res.id;
1119 __entry->rc = rc;
1120 ),
1121
1122 TP_printk("mr.id=%u: rc=%d",
1123 __entry->mr_id, __entry->rc
1124 )
1125);
1126
1127TRACE_EVENT(xprtrdma_frwr_dereg,
1128 TP_PROTO(
1129 const struct rpcrdma_mr *mr,
1130 int rc
1131 ),
1132
1133 TP_ARGS(mr, rc),
1134
1135 TP_STRUCT__entry(
1136 __field(u32, mr_id)
1137 __field(int, nents)
1138 __field(u32, handle)
1139 __field(u32, length)
1140 __field(u64, offset)
1141 __field(u32, dir)
1142 __field(int, rc)
1143 ),
1144
1145 TP_fast_assign(
1146 __entry->mr_id = mr->mr_ibmr->res.id;
1147 __entry->nents = mr->mr_nents;
1148 __entry->handle = mr->mr_handle;
1149 __entry->length = mr->mr_length;
1150 __entry->offset = mr->mr_offset;
1151 __entry->dir = mr->mr_dir;
1152 __entry->rc = rc;
1153 ),
1154
1155 TP_printk("mr.id=%u nents=%d %u@0x%016llx:0x%08x (%s): rc=%d",
1156 __entry->mr_id, __entry->nents, __entry->length,
1157 (unsigned long long)__entry->offset, __entry->handle,
1158 xprtrdma_show_direction(__entry->dir),
1159 __entry->rc
1160 )
1161);
1162
1163TRACE_EVENT(xprtrdma_frwr_sgerr,
1164 TP_PROTO(
1165 const struct rpcrdma_mr *mr,
1166 int sg_nents
1167 ),
1168
1169 TP_ARGS(mr, sg_nents),
1170
1171 TP_STRUCT__entry(
1172 __field(u32, mr_id)
1173 __field(u64, addr)
1174 __field(u32, dir)
1175 __field(int, nents)
1176 ),
1177
1178 TP_fast_assign(
1179 __entry->mr_id = mr->mr_ibmr->res.id;
1180 __entry->addr = mr->mr_sg->dma_address;
1181 __entry->dir = mr->mr_dir;
1182 __entry->nents = sg_nents;
1183 ),
1184
1185 TP_printk("mr.id=%u DMA addr=0x%llx (%s) sg_nents=%d",
1186 __entry->mr_id, __entry->addr,
1187 xprtrdma_show_direction(__entry->dir),
1188 __entry->nents
1189 )
1190);
1191
1192TRACE_EVENT(xprtrdma_frwr_maperr,
1193 TP_PROTO(
1194 const struct rpcrdma_mr *mr,
1195 int num_mapped
1196 ),
1197
1198 TP_ARGS(mr, num_mapped),
1199
1200 TP_STRUCT__entry(
1201 __field(u32, mr_id)
1202 __field(u64, addr)
1203 __field(u32, dir)
1204 __field(int, num_mapped)
1205 __field(int, nents)
1206 ),
1207
1208 TP_fast_assign(
1209 __entry->mr_id = mr->mr_ibmr->res.id;
1210 __entry->addr = mr->mr_sg->dma_address;
1211 __entry->dir = mr->mr_dir;
1212 __entry->num_mapped = num_mapped;
1213 __entry->nents = mr->mr_nents;
1214 ),
1215
1216 TP_printk("mr.id=%u DMA addr=0x%llx (%s) nents=%d of %d",
1217 __entry->mr_id, __entry->addr,
1218 xprtrdma_show_direction(__entry->dir),
1219 __entry->num_mapped, __entry->nents
1220 )
1221);
1222
1223DEFINE_MR_EVENT(fastreg);
1224DEFINE_MR_EVENT(localinv);
1225DEFINE_MR_EVENT(reminv);
1226DEFINE_MR_EVENT(map);
1227
1228DEFINE_ANON_MR_EVENT(unmap);
1229
1230TRACE_EVENT(xprtrdma_dma_maperr,
1231 TP_PROTO(
1232 u64 addr
1233 ),
1234
1235 TP_ARGS(addr),
1236
1237 TP_STRUCT__entry(
1238 __field(u64, addr)
1239 ),
1240
1241 TP_fast_assign(
1242 __entry->addr = addr;
1243 ),
1244
1245 TP_printk("dma addr=0x%llx\n", __entry->addr)
1246);
1247
1248/**
1249 ** Reply events
1250 **/
1251
1252TRACE_EVENT(xprtrdma_reply,
1253 TP_PROTO(
1254 const struct rpc_task *task,
1255 const struct rpcrdma_rep *rep,
1256 unsigned int credits
1257 ),
1258
1259 TP_ARGS(task, rep, credits),
1260
1261 TP_STRUCT__entry(
1262 __field(unsigned int, task_id)
1263 __field(unsigned int, client_id)
1264 __field(u32, xid)
1265 __field(unsigned int, credits)
1266 ),
1267
1268 TP_fast_assign(
1269 __entry->task_id = task->tk_pid;
1270 __entry->client_id = task->tk_client->cl_clid;
1271 __entry->xid = be32_to_cpu(rep->rr_xid);
1272 __entry->credits = credits;
1273 ),
1274
1275 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x credits=%u",
1276 __entry->task_id, __entry->client_id, __entry->xid,
1277 __entry->credits
1278 )
1279);
1280
1281DEFINE_REPLY_EVENT(vers);
1282DEFINE_REPLY_EVENT(rqst);
1283DEFINE_REPLY_EVENT(short);
1284DEFINE_REPLY_EVENT(hdr);
1285
1286TRACE_EVENT(xprtrdma_err_vers,
1287 TP_PROTO(
1288 const struct rpc_rqst *rqst,
1289 __be32 *min,
1290 __be32 *max
1291 ),
1292
1293 TP_ARGS(rqst, min, max),
1294
1295 TP_STRUCT__entry(
1296 __field(unsigned int, task_id)
1297 __field(unsigned int, client_id)
1298 __field(u32, xid)
1299 __field(u32, min)
1300 __field(u32, max)
1301 ),
1302
1303 TP_fast_assign(
1304 __entry->task_id = rqst->rq_task->tk_pid;
1305 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1306 __entry->xid = be32_to_cpu(rqst->rq_xid);
1307 __entry->min = be32_to_cpup(min);
1308 __entry->max = be32_to_cpup(max);
1309 ),
1310
1311 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x versions=[%u, %u]",
1312 __entry->task_id, __entry->client_id, __entry->xid,
1313 __entry->min, __entry->max
1314 )
1315);
1316
1317TRACE_EVENT(xprtrdma_err_chunk,
1318 TP_PROTO(
1319 const struct rpc_rqst *rqst
1320 ),
1321
1322 TP_ARGS(rqst),
1323
1324 TP_STRUCT__entry(
1325 __field(unsigned int, task_id)
1326 __field(unsigned int, client_id)
1327 __field(u32, xid)
1328 ),
1329
1330 TP_fast_assign(
1331 __entry->task_id = rqst->rq_task->tk_pid;
1332 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1333 __entry->xid = be32_to_cpu(rqst->rq_xid);
1334 ),
1335
1336 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x",
1337 __entry->task_id, __entry->client_id, __entry->xid
1338 )
1339);
1340
1341TRACE_EVENT(xprtrdma_err_unrecognized,
1342 TP_PROTO(
1343 const struct rpc_rqst *rqst,
1344 __be32 *procedure
1345 ),
1346
1347 TP_ARGS(rqst, procedure),
1348
1349 TP_STRUCT__entry(
1350 __field(unsigned int, task_id)
1351 __field(unsigned int, client_id)
1352 __field(u32, xid)
1353 __field(u32, procedure)
1354 ),
1355
1356 TP_fast_assign(
1357 __entry->task_id = rqst->rq_task->tk_pid;
1358 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1359 __entry->procedure = be32_to_cpup(procedure);
1360 ),
1361
1362 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x procedure=%u",
1363 __entry->task_id, __entry->client_id, __entry->xid,
1364 __entry->procedure
1365 )
1366);
1367
1368TRACE_EVENT(xprtrdma_fixup,
1369 TP_PROTO(
1370 const struct rpc_rqst *rqst,
1371 unsigned long fixup
1372 ),
1373
1374 TP_ARGS(rqst, fixup),
1375
1376 TP_STRUCT__entry(
1377 __field(unsigned int, task_id)
1378 __field(unsigned int, client_id)
1379 __field(unsigned long, fixup)
1380 __field(size_t, headlen)
1381 __field(unsigned int, pagelen)
1382 __field(size_t, taillen)
1383 ),
1384
1385 TP_fast_assign(
1386 __entry->task_id = rqst->rq_task->tk_pid;
1387 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1388 __entry->fixup = fixup;
1389 __entry->headlen = rqst->rq_rcv_buf.head[0].iov_len;
1390 __entry->pagelen = rqst->rq_rcv_buf.page_len;
1391 __entry->taillen = rqst->rq_rcv_buf.tail[0].iov_len;
1392 ),
1393
1394 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " fixup=%lu xdr=%zu/%u/%zu",
1395 __entry->task_id, __entry->client_id, __entry->fixup,
1396 __entry->headlen, __entry->pagelen, __entry->taillen
1397 )
1398);
1399
1400TRACE_EVENT(xprtrdma_decode_seg,
1401 TP_PROTO(
1402 u32 handle,
1403 u32 length,
1404 u64 offset
1405 ),
1406
1407 TP_ARGS(handle, length, offset),
1408
1409 TP_STRUCT__entry(
1410 __field(u32, handle)
1411 __field(u32, length)
1412 __field(u64, offset)
1413 ),
1414
1415 TP_fast_assign(
1416 __entry->handle = handle;
1417 __entry->length = length;
1418 __entry->offset = offset;
1419 ),
1420
1421 TP_printk("%u@0x%016llx:0x%08x",
1422 __entry->length, (unsigned long long)__entry->offset,
1423 __entry->handle
1424 )
1425);
1426
1427TRACE_EVENT(xprtrdma_mrs_zap,
1428 TP_PROTO(
1429 const struct rpc_task *task
1430 ),
1431
1432 TP_ARGS(task),
1433
1434 TP_STRUCT__entry(
1435 __field(unsigned int, task_id)
1436 __field(unsigned int, client_id)
1437 ),
1438
1439 TP_fast_assign(
1440 __entry->task_id = task->tk_pid;
1441 __entry->client_id = task->tk_client->cl_clid;
1442 ),
1443
1444 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER,
1445 __entry->task_id, __entry->client_id
1446 )
1447);
1448
1449/**
1450 ** Callback events
1451 **/
1452
1453TRACE_EVENT(xprtrdma_cb_setup,
1454 TP_PROTO(
1455 const struct rpcrdma_xprt *r_xprt,
1456 unsigned int reqs
1457 ),
1458
1459 TP_ARGS(r_xprt, reqs),
1460
1461 TP_STRUCT__entry(
1462 __field(unsigned int, reqs)
1463 __string(addr, rpcrdma_addrstr(r_xprt))
1464 __string(port, rpcrdma_portstr(r_xprt))
1465 ),
1466
1467 TP_fast_assign(
1468 __entry->reqs = reqs;
1469 __assign_str(addr, rpcrdma_addrstr(r_xprt));
1470 __assign_str(port, rpcrdma_portstr(r_xprt));
1471 ),
1472
1473 TP_printk("peer=[%s]:%s %u reqs",
1474 __get_str(addr), __get_str(port), __entry->reqs
1475 )
1476);
1477
1478DEFINE_CALLBACK_EVENT(call);
1479DEFINE_CALLBACK_EVENT(reply);
1480
1481/**
1482 ** Server-side RPC/RDMA events
1483 **/
1484
1485DECLARE_EVENT_CLASS(svcrdma_accept_class,
1486 TP_PROTO(
1487 const struct svcxprt_rdma *rdma,
1488 long status
1489 ),
1490
1491 TP_ARGS(rdma, status),
1492
1493 TP_STRUCT__entry(
1494 __field(long, status)
1495 __string(addr, rdma->sc_xprt.xpt_remotebuf)
1496 ),
1497
1498 TP_fast_assign(
1499 __entry->status = status;
1500 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
1501 ),
1502
1503 TP_printk("addr=%s status=%ld",
1504 __get_str(addr), __entry->status
1505 )
1506);
1507
1508#define DEFINE_ACCEPT_EVENT(name) \
1509 DEFINE_EVENT(svcrdma_accept_class, svcrdma_##name##_err, \
1510 TP_PROTO( \
1511 const struct svcxprt_rdma *rdma, \
1512 long status \
1513 ), \
1514 TP_ARGS(rdma, status))
1515
1516DEFINE_ACCEPT_EVENT(pd);
1517DEFINE_ACCEPT_EVENT(qp);
1518DEFINE_ACCEPT_EVENT(fabric);
1519DEFINE_ACCEPT_EVENT(initdepth);
1520DEFINE_ACCEPT_EVENT(accept);
1521
1522TRACE_DEFINE_ENUM(RDMA_MSG);
1523TRACE_DEFINE_ENUM(RDMA_NOMSG);
1524TRACE_DEFINE_ENUM(RDMA_MSGP);
1525TRACE_DEFINE_ENUM(RDMA_DONE);
1526TRACE_DEFINE_ENUM(RDMA_ERROR);
1527
1528#define show_rpcrdma_proc(x) \
1529 __print_symbolic(x, \
1530 { RDMA_MSG, "RDMA_MSG" }, \
1531 { RDMA_NOMSG, "RDMA_NOMSG" }, \
1532 { RDMA_MSGP, "RDMA_MSGP" }, \
1533 { RDMA_DONE, "RDMA_DONE" }, \
1534 { RDMA_ERROR, "RDMA_ERROR" })
1535
1536TRACE_EVENT(svcrdma_decode_rqst,
1537 TP_PROTO(
1538 const struct svc_rdma_recv_ctxt *ctxt,
1539 __be32 *p,
1540 unsigned int hdrlen
1541 ),
1542
1543 TP_ARGS(ctxt, p, hdrlen),
1544
1545 TP_STRUCT__entry(
1546 __field(u32, cq_id)
1547 __field(int, completion_id)
1548 __field(u32, xid)
1549 __field(u32, vers)
1550 __field(u32, proc)
1551 __field(u32, credits)
1552 __field(unsigned int, hdrlen)
1553 ),
1554
1555 TP_fast_assign(
1556 __entry->cq_id = ctxt->rc_cid.ci_queue_id;
1557 __entry->completion_id = ctxt->rc_cid.ci_completion_id;
1558 __entry->xid = be32_to_cpup(p++);
1559 __entry->vers = be32_to_cpup(p++);
1560 __entry->credits = be32_to_cpup(p++);
1561 __entry->proc = be32_to_cpup(p);
1562 __entry->hdrlen = hdrlen;
1563 ),
1564
1565 TP_printk("cq.id=%u cid=%d xid=0x%08x vers=%u credits=%u proc=%s hdrlen=%u",
1566 __entry->cq_id, __entry->completion_id,
1567 __entry->xid, __entry->vers, __entry->credits,
1568 show_rpcrdma_proc(__entry->proc), __entry->hdrlen)
1569);
1570
1571TRACE_EVENT(svcrdma_decode_short_err,
1572 TP_PROTO(
1573 const struct svc_rdma_recv_ctxt *ctxt,
1574 unsigned int hdrlen
1575 ),
1576
1577 TP_ARGS(ctxt, hdrlen),
1578
1579 TP_STRUCT__entry(
1580 __field(u32, cq_id)
1581 __field(int, completion_id)
1582 __field(unsigned int, hdrlen)
1583 ),
1584
1585 TP_fast_assign(
1586 __entry->cq_id = ctxt->rc_cid.ci_queue_id;
1587 __entry->completion_id = ctxt->rc_cid.ci_completion_id;
1588 __entry->hdrlen = hdrlen;
1589 ),
1590
1591 TP_printk("cq.id=%u cid=%d hdrlen=%u",
1592 __entry->cq_id, __entry->completion_id,
1593 __entry->hdrlen)
1594);
1595
1596DECLARE_EVENT_CLASS(svcrdma_badreq_event,
1597 TP_PROTO(
1598 const struct svc_rdma_recv_ctxt *ctxt,
1599 __be32 *p
1600 ),
1601
1602 TP_ARGS(ctxt, p),
1603
1604 TP_STRUCT__entry(
1605 __field(u32, cq_id)
1606 __field(int, completion_id)
1607 __field(u32, xid)
1608 __field(u32, vers)
1609 __field(u32, proc)
1610 __field(u32, credits)
1611 ),
1612
1613 TP_fast_assign(
1614 __entry->cq_id = ctxt->rc_cid.ci_queue_id;
1615 __entry->completion_id = ctxt->rc_cid.ci_completion_id;
1616 __entry->xid = be32_to_cpup(p++);
1617 __entry->vers = be32_to_cpup(p++);
1618 __entry->credits = be32_to_cpup(p++);
1619 __entry->proc = be32_to_cpup(p);
1620 ),
1621
1622 TP_printk("cq.id=%u cid=%d xid=0x%08x vers=%u credits=%u proc=%u",
1623 __entry->cq_id, __entry->completion_id,
1624 __entry->xid, __entry->vers, __entry->credits, __entry->proc)
1625);
1626
1627#define DEFINE_BADREQ_EVENT(name) \
1628 DEFINE_EVENT(svcrdma_badreq_event, \
1629 svcrdma_decode_##name##_err, \
1630 TP_PROTO( \
1631 const struct svc_rdma_recv_ctxt *ctxt, \
1632 __be32 *p \
1633 ), \
1634 TP_ARGS(ctxt, p))
1635
1636DEFINE_BADREQ_EVENT(badvers);
1637DEFINE_BADREQ_EVENT(drop);
1638DEFINE_BADREQ_EVENT(badproc);
1639DEFINE_BADREQ_EVENT(parse);
1640
1641TRACE_EVENT(svcrdma_encode_wseg,
1642 TP_PROTO(
1643 const struct svc_rdma_send_ctxt *ctxt,
1644 u32 segno,
1645 u32 handle,
1646 u32 length,
1647 u64 offset
1648 ),
1649
1650 TP_ARGS(ctxt, segno, handle, length, offset),
1651
1652 TP_STRUCT__entry(
1653 __field(u32, cq_id)
1654 __field(int, completion_id)
1655 __field(u32, segno)
1656 __field(u32, handle)
1657 __field(u32, length)
1658 __field(u64, offset)
1659 ),
1660
1661 TP_fast_assign(
1662 __entry->cq_id = ctxt->sc_cid.ci_queue_id;
1663 __entry->completion_id = ctxt->sc_cid.ci_completion_id;
1664 __entry->segno = segno;
1665 __entry->handle = handle;
1666 __entry->length = length;
1667 __entry->offset = offset;
1668 ),
1669
1670 TP_printk("cq_id=%u cid=%d segno=%u %u@0x%016llx:0x%08x",
1671 __entry->cq_id, __entry->completion_id,
1672 __entry->segno, __entry->length,
1673 (unsigned long long)__entry->offset, __entry->handle
1674 )
1675);
1676
1677TRACE_EVENT(svcrdma_decode_rseg,
1678 TP_PROTO(
1679 const struct rpc_rdma_cid *cid,
1680 const struct svc_rdma_chunk *chunk,
1681 const struct svc_rdma_segment *segment
1682 ),
1683
1684 TP_ARGS(cid, chunk, segment),
1685
1686 TP_STRUCT__entry(
1687 __field(u32, cq_id)
1688 __field(int, completion_id)
1689 __field(u32, segno)
1690 __field(u32, position)
1691 __field(u32, handle)
1692 __field(u32, length)
1693 __field(u64, offset)
1694 ),
1695
1696 TP_fast_assign(
1697 __entry->cq_id = cid->ci_queue_id;
1698 __entry->completion_id = cid->ci_completion_id;
1699 __entry->segno = chunk->ch_segcount;
1700 __entry->position = chunk->ch_position;
1701 __entry->handle = segment->rs_handle;
1702 __entry->length = segment->rs_length;
1703 __entry->offset = segment->rs_offset;
1704 ),
1705
1706 TP_printk("cq_id=%u cid=%d segno=%u position=%u %u@0x%016llx:0x%08x",
1707 __entry->cq_id, __entry->completion_id,
1708 __entry->segno, __entry->position, __entry->length,
1709 (unsigned long long)__entry->offset, __entry->handle
1710 )
1711);
1712
1713TRACE_EVENT(svcrdma_decode_wseg,
1714 TP_PROTO(
1715 const struct rpc_rdma_cid *cid,
1716 const struct svc_rdma_chunk *chunk,
1717 u32 segno
1718 ),
1719
1720 TP_ARGS(cid, chunk, segno),
1721
1722 TP_STRUCT__entry(
1723 __field(u32, cq_id)
1724 __field(int, completion_id)
1725 __field(u32, segno)
1726 __field(u32, handle)
1727 __field(u32, length)
1728 __field(u64, offset)
1729 ),
1730
1731 TP_fast_assign(
1732 const struct svc_rdma_segment *segment =
1733 &chunk->ch_segments[segno];
1734
1735 __entry->cq_id = cid->ci_queue_id;
1736 __entry->completion_id = cid->ci_completion_id;
1737 __entry->segno = segno;
1738 __entry->handle = segment->rs_handle;
1739 __entry->length = segment->rs_length;
1740 __entry->offset = segment->rs_offset;
1741 ),
1742
1743 TP_printk("cq_id=%u cid=%d segno=%u %u@0x%016llx:0x%08x",
1744 __entry->cq_id, __entry->completion_id,
1745 __entry->segno, __entry->length,
1746 (unsigned long long)__entry->offset, __entry->handle
1747 )
1748);
1749
1750DECLARE_EVENT_CLASS(svcrdma_error_event,
1751 TP_PROTO(
1752 __be32 xid
1753 ),
1754
1755 TP_ARGS(xid),
1756
1757 TP_STRUCT__entry(
1758 __field(u32, xid)
1759 ),
1760
1761 TP_fast_assign(
1762 __entry->xid = be32_to_cpu(xid);
1763 ),
1764
1765 TP_printk("xid=0x%08x",
1766 __entry->xid
1767 )
1768);
1769
1770#define DEFINE_ERROR_EVENT(name) \
1771 DEFINE_EVENT(svcrdma_error_event, svcrdma_err_##name, \
1772 TP_PROTO( \
1773 __be32 xid \
1774 ), \
1775 TP_ARGS(xid))
1776
1777DEFINE_ERROR_EVENT(vers);
1778DEFINE_ERROR_EVENT(chunk);
1779
1780/**
1781 ** Server-side RDMA API events
1782 **/
1783
1784DECLARE_EVENT_CLASS(svcrdma_dma_map_class,
1785 TP_PROTO(
1786 const struct svcxprt_rdma *rdma,
1787 u64 dma_addr,
1788 u32 length
1789 ),
1790
1791 TP_ARGS(rdma, dma_addr, length),
1792
1793 TP_STRUCT__entry(
1794 __field(u64, dma_addr)
1795 __field(u32, length)
1796 __string(device, rdma->sc_cm_id->device->name)
1797 __string(addr, rdma->sc_xprt.xpt_remotebuf)
1798 ),
1799
1800 TP_fast_assign(
1801 __entry->dma_addr = dma_addr;
1802 __entry->length = length;
1803 __assign_str(device, rdma->sc_cm_id->device->name);
1804 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
1805 ),
1806
1807 TP_printk("addr=%s device=%s dma_addr=%llu length=%u",
1808 __get_str(addr), __get_str(device),
1809 __entry->dma_addr, __entry->length
1810 )
1811);
1812
1813#define DEFINE_SVC_DMA_EVENT(name) \
1814 DEFINE_EVENT(svcrdma_dma_map_class, svcrdma_##name, \
1815 TP_PROTO( \
1816 const struct svcxprt_rdma *rdma,\
1817 u64 dma_addr, \
1818 u32 length \
1819 ), \
1820 TP_ARGS(rdma, dma_addr, length))
1821
1822DEFINE_SVC_DMA_EVENT(dma_map_page);
1823DEFINE_SVC_DMA_EVENT(dma_map_err);
1824DEFINE_SVC_DMA_EVENT(dma_unmap_page);
1825
1826TRACE_EVENT(svcrdma_dma_map_rw_err,
1827 TP_PROTO(
1828 const struct svcxprt_rdma *rdma,
1829 unsigned int nents,
1830 int status
1831 ),
1832
1833 TP_ARGS(rdma, nents, status),
1834
1835 TP_STRUCT__entry(
1836 __field(int, status)
1837 __field(unsigned int, nents)
1838 __string(device, rdma->sc_cm_id->device->name)
1839 __string(addr, rdma->sc_xprt.xpt_remotebuf)
1840 ),
1841
1842 TP_fast_assign(
1843 __entry->status = status;
1844 __entry->nents = nents;
1845 __assign_str(device, rdma->sc_cm_id->device->name);
1846 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
1847 ),
1848
1849 TP_printk("addr=%s device=%s nents=%u status=%d",
1850 __get_str(addr), __get_str(device), __entry->nents,
1851 __entry->status
1852 )
1853);
1854
1855TRACE_EVENT(svcrdma_no_rwctx_err,
1856 TP_PROTO(
1857 const struct svcxprt_rdma *rdma,
1858 unsigned int num_sges
1859 ),
1860
1861 TP_ARGS(rdma, num_sges),
1862
1863 TP_STRUCT__entry(
1864 __field(unsigned int, num_sges)
1865 __string(device, rdma->sc_cm_id->device->name)
1866 __string(addr, rdma->sc_xprt.xpt_remotebuf)
1867 ),
1868
1869 TP_fast_assign(
1870 __entry->num_sges = num_sges;
1871 __assign_str(device, rdma->sc_cm_id->device->name);
1872 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
1873 ),
1874
1875 TP_printk("addr=%s device=%s num_sges=%d",
1876 __get_str(addr), __get_str(device), __entry->num_sges
1877 )
1878);
1879
1880TRACE_EVENT(svcrdma_page_overrun_err,
1881 TP_PROTO(
1882 const struct svcxprt_rdma *rdma,
1883 const struct svc_rqst *rqst,
1884 unsigned int pageno
1885 ),
1886
1887 TP_ARGS(rdma, rqst, pageno),
1888
1889 TP_STRUCT__entry(
1890 __field(unsigned int, pageno)
1891 __field(u32, xid)
1892 __string(device, rdma->sc_cm_id->device->name)
1893 __string(addr, rdma->sc_xprt.xpt_remotebuf)
1894 ),
1895
1896 TP_fast_assign(
1897 __entry->pageno = pageno;
1898 __entry->xid = __be32_to_cpu(rqst->rq_xid);
1899 __assign_str(device, rdma->sc_cm_id->device->name);
1900 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
1901 ),
1902
1903 TP_printk("addr=%s device=%s xid=0x%08x pageno=%u", __get_str(addr),
1904 __get_str(device), __entry->xid, __entry->pageno
1905 )
1906);
1907
1908TRACE_EVENT(svcrdma_small_wrch_err,
1909 TP_PROTO(
1910 const struct svcxprt_rdma *rdma,
1911 unsigned int remaining,
1912 unsigned int seg_no,
1913 unsigned int num_segs
1914 ),
1915
1916 TP_ARGS(rdma, remaining, seg_no, num_segs),
1917
1918 TP_STRUCT__entry(
1919 __field(unsigned int, remaining)
1920 __field(unsigned int, seg_no)
1921 __field(unsigned int, num_segs)
1922 __string(device, rdma->sc_cm_id->device->name)
1923 __string(addr, rdma->sc_xprt.xpt_remotebuf)
1924 ),
1925
1926 TP_fast_assign(
1927 __entry->remaining = remaining;
1928 __entry->seg_no = seg_no;
1929 __entry->num_segs = num_segs;
1930 __assign_str(device, rdma->sc_cm_id->device->name);
1931 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
1932 ),
1933
1934 TP_printk("addr=%s device=%s remaining=%u seg_no=%u num_segs=%u",
1935 __get_str(addr), __get_str(device), __entry->remaining,
1936 __entry->seg_no, __entry->num_segs
1937 )
1938);
1939
1940TRACE_EVENT(svcrdma_send_pullup,
1941 TP_PROTO(
1942 const struct svc_rdma_send_ctxt *ctxt,
1943 unsigned int msglen
1944 ),
1945
1946 TP_ARGS(ctxt, msglen),
1947
1948 TP_STRUCT__entry(
1949 __field(u32, cq_id)
1950 __field(int, completion_id)
1951 __field(unsigned int, hdrlen)
1952 __field(unsigned int, msglen)
1953 ),
1954
1955 TP_fast_assign(
1956 __entry->cq_id = ctxt->sc_cid.ci_queue_id;
1957 __entry->completion_id = ctxt->sc_cid.ci_completion_id;
1958 __entry->hdrlen = ctxt->sc_hdrbuf.len,
1959 __entry->msglen = msglen;
1960 ),
1961
1962 TP_printk("cq_id=%u cid=%d hdr=%u msg=%u (total %u)",
1963 __entry->cq_id, __entry->completion_id,
1964 __entry->hdrlen, __entry->msglen,
1965 __entry->hdrlen + __entry->msglen)
1966);
1967
1968TRACE_EVENT(svcrdma_send_err,
1969 TP_PROTO(
1970 const struct svc_rqst *rqst,
1971 int status
1972 ),
1973
1974 TP_ARGS(rqst, status),
1975
1976 TP_STRUCT__entry(
1977 __field(int, status)
1978 __field(u32, xid)
1979 __string(addr, rqst->rq_xprt->xpt_remotebuf)
1980 ),
1981
1982 TP_fast_assign(
1983 __entry->status = status;
1984 __entry->xid = __be32_to_cpu(rqst->rq_xid);
1985 __assign_str(addr, rqst->rq_xprt->xpt_remotebuf);
1986 ),
1987
1988 TP_printk("addr=%s xid=0x%08x status=%d", __get_str(addr),
1989 __entry->xid, __entry->status
1990 )
1991);
1992
1993TRACE_EVENT(svcrdma_post_send,
1994 TP_PROTO(
1995 const struct svc_rdma_send_ctxt *ctxt
1996 ),
1997
1998 TP_ARGS(ctxt),
1999
2000 TP_STRUCT__entry(
2001 __field(u32, cq_id)
2002 __field(int, completion_id)
2003 __field(unsigned int, num_sge)
2004 __field(u32, inv_rkey)
2005 ),
2006
2007 TP_fast_assign(
2008 const struct ib_send_wr *wr = &ctxt->sc_send_wr;
2009
2010 __entry->cq_id = ctxt->sc_cid.ci_queue_id;
2011 __entry->completion_id = ctxt->sc_cid.ci_completion_id;
2012 __entry->num_sge = wr->num_sge;
2013 __entry->inv_rkey = (wr->opcode == IB_WR_SEND_WITH_INV) ?
2014 wr->ex.invalidate_rkey : 0;
2015 ),
2016
2017 TP_printk("cq_id=%u cid=%d num_sge=%u inv_rkey=0x%08x",
2018 __entry->cq_id, __entry->completion_id,
2019 __entry->num_sge, __entry->inv_rkey
2020 )
2021);
2022
2023DEFINE_SEND_COMPLETION_EVENT(svcrdma_wc_send);
2024DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_send_flush);
2025DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_send_err);
2026
2027TRACE_EVENT(svcrdma_post_recv,
2028 TP_PROTO(
2029 const struct svc_rdma_recv_ctxt *ctxt
2030 ),
2031
2032 TP_ARGS(ctxt),
2033
2034 TP_STRUCT__entry(
2035 __field(u32, cq_id)
2036 __field(int, completion_id)
2037 ),
2038
2039 TP_fast_assign(
2040 __entry->cq_id = ctxt->rc_cid.ci_queue_id;
2041 __entry->completion_id = ctxt->rc_cid.ci_completion_id;
2042 ),
2043
2044 TP_printk("cq.id=%d cid=%d",
2045 __entry->cq_id, __entry->completion_id
2046 )
2047);
2048
2049DEFINE_RECEIVE_SUCCESS_EVENT(svcrdma_wc_recv);
2050DEFINE_RECEIVE_FLUSH_EVENT(svcrdma_wc_recv_flush);
2051DEFINE_RECEIVE_FLUSH_EVENT(svcrdma_wc_recv_err);
2052
2053TRACE_EVENT(svcrdma_rq_post_err,
2054 TP_PROTO(
2055 const struct svcxprt_rdma *rdma,
2056 int status
2057 ),
2058
2059 TP_ARGS(rdma, status),
2060
2061 TP_STRUCT__entry(
2062 __field(int, status)
2063 __string(addr, rdma->sc_xprt.xpt_remotebuf)
2064 ),
2065
2066 TP_fast_assign(
2067 __entry->status = status;
2068 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
2069 ),
2070
2071 TP_printk("addr=%s status=%d",
2072 __get_str(addr), __entry->status
2073 )
2074);
2075
2076DECLARE_EVENT_CLASS(svcrdma_post_chunk_class,
2077 TP_PROTO(
2078 const struct rpc_rdma_cid *cid,
2079 int sqecount
2080 ),
2081
2082 TP_ARGS(cid, sqecount),
2083
2084 TP_STRUCT__entry(
2085 __field(u32, cq_id)
2086 __field(int, completion_id)
2087 __field(int, sqecount)
2088 ),
2089
2090 TP_fast_assign(
2091 __entry->cq_id = cid->ci_queue_id;
2092 __entry->completion_id = cid->ci_completion_id;
2093 __entry->sqecount = sqecount;
2094 ),
2095
2096 TP_printk("cq.id=%u cid=%d sqecount=%d",
2097 __entry->cq_id, __entry->completion_id,
2098 __entry->sqecount
2099 )
2100);
2101
2102#define DEFINE_POST_CHUNK_EVENT(name) \
2103 DEFINE_EVENT(svcrdma_post_chunk_class, \
2104 svcrdma_post_##name##_chunk, \
2105 TP_PROTO( \
2106 const struct rpc_rdma_cid *cid, \
2107 int sqecount \
2108 ), \
2109 TP_ARGS(cid, sqecount))
2110
2111DEFINE_POST_CHUNK_EVENT(read);
2112DEFINE_POST_CHUNK_EVENT(write);
2113DEFINE_POST_CHUNK_EVENT(reply);
2114
2115TRACE_EVENT(svcrdma_wc_read,
2116 TP_PROTO(
2117 const struct ib_wc *wc,
2118 const struct rpc_rdma_cid *cid,
2119 unsigned int totalbytes,
2120 const ktime_t posttime
2121 ),
2122
2123 TP_ARGS(wc, cid, totalbytes, posttime),
2124
2125 TP_STRUCT__entry(
2126 __field(u32, cq_id)
2127 __field(int, completion_id)
2128 __field(s64, read_latency)
2129 __field(unsigned int, totalbytes)
2130 ),
2131
2132 TP_fast_assign(
2133 __entry->cq_id = cid->ci_queue_id;
2134 __entry->completion_id = cid->ci_completion_id;
2135 __entry->totalbytes = totalbytes;
2136 __entry->read_latency = ktime_us_delta(ktime_get(), posttime);
2137 ),
2138
2139 TP_printk("cq.id=%u cid=%d totalbytes=%u latency-us=%lld",
2140 __entry->cq_id, __entry->completion_id,
2141 __entry->totalbytes, __entry->read_latency
2142 )
2143);
2144
2145DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_read_flush);
2146DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_read_err);
2147
2148DEFINE_SEND_COMPLETION_EVENT(svcrdma_wc_write);
2149DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_write_flush);
2150DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_write_err);
2151
2152TRACE_EVENT(svcrdma_qp_error,
2153 TP_PROTO(
2154 const struct ib_event *event,
2155 const struct sockaddr *sap
2156 ),
2157
2158 TP_ARGS(event, sap),
2159
2160 TP_STRUCT__entry(
2161 __field(unsigned int, event)
2162 __string(device, event->device->name)
2163 __array(__u8, addr, INET6_ADDRSTRLEN + 10)
2164 ),
2165
2166 TP_fast_assign(
2167 __entry->event = event->event;
2168 __assign_str(device, event->device->name);
2169 snprintf(__entry->addr, sizeof(__entry->addr) - 1,
2170 "%pISpc", sap);
2171 ),
2172
2173 TP_printk("addr=%s dev=%s event=%s (%u)",
2174 __entry->addr, __get_str(device),
2175 rdma_show_ib_event(__entry->event), __entry->event
2176 )
2177);
2178
2179DECLARE_EVENT_CLASS(svcrdma_sendqueue_event,
2180 TP_PROTO(
2181 const struct svcxprt_rdma *rdma
2182 ),
2183
2184 TP_ARGS(rdma),
2185
2186 TP_STRUCT__entry(
2187 __field(int, avail)
2188 __field(int, depth)
2189 __string(addr, rdma->sc_xprt.xpt_remotebuf)
2190 ),
2191
2192 TP_fast_assign(
2193 __entry->avail = atomic_read(&rdma->sc_sq_avail);
2194 __entry->depth = rdma->sc_sq_depth;
2195 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
2196 ),
2197
2198 TP_printk("addr=%s sc_sq_avail=%d/%d",
2199 __get_str(addr), __entry->avail, __entry->depth
2200 )
2201);
2202
2203#define DEFINE_SQ_EVENT(name) \
2204 DEFINE_EVENT(svcrdma_sendqueue_event, svcrdma_sq_##name,\
2205 TP_PROTO( \
2206 const struct svcxprt_rdma *rdma \
2207 ), \
2208 TP_ARGS(rdma))
2209
2210DEFINE_SQ_EVENT(full);
2211DEFINE_SQ_EVENT(retry);
2212
2213TRACE_EVENT(svcrdma_sq_post_err,
2214 TP_PROTO(
2215 const struct svcxprt_rdma *rdma,
2216 int status
2217 ),
2218
2219 TP_ARGS(rdma, status),
2220
2221 TP_STRUCT__entry(
2222 __field(int, avail)
2223 __field(int, depth)
2224 __field(int, status)
2225 __string(addr, rdma->sc_xprt.xpt_remotebuf)
2226 ),
2227
2228 TP_fast_assign(
2229 __entry->avail = atomic_read(&rdma->sc_sq_avail);
2230 __entry->depth = rdma->sc_sq_depth;
2231 __entry->status = status;
2232 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
2233 ),
2234
2235 TP_printk("addr=%s sc_sq_avail=%d/%d status=%d",
2236 __get_str(addr), __entry->avail, __entry->depth,
2237 __entry->status
2238 )
2239);
2240
2241#endif /* _TRACE_RPCRDMA_H */
2242
2243#include <trace/define_trace.h>
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (c) 2017, 2018 Oracle. All rights reserved.
4 *
5 * Trace point definitions for the "rpcrdma" subsystem.
6 */
7#undef TRACE_SYSTEM
8#define TRACE_SYSTEM rpcrdma
9
10#if !defined(_TRACE_RPCRDMA_H) || defined(TRACE_HEADER_MULTI_READ)
11#define _TRACE_RPCRDMA_H
12
13#include <linux/scatterlist.h>
14#include <linux/sunrpc/rpc_rdma_cid.h>
15#include <linux/tracepoint.h>
16#include <rdma/ib_cm.h>
17
18#include <trace/misc/rdma.h>
19#include <trace/misc/sunrpc.h>
20
21/**
22 ** Event classes
23 **/
24
25DECLARE_EVENT_CLASS(rpcrdma_simple_cid_class,
26 TP_PROTO(
27 const struct rpc_rdma_cid *cid
28 ),
29
30 TP_ARGS(cid),
31
32 TP_STRUCT__entry(
33 __field(u32, cq_id)
34 __field(int, completion_id)
35 ),
36
37 TP_fast_assign(
38 __entry->cq_id = cid->ci_queue_id;
39 __entry->completion_id = cid->ci_completion_id;
40 ),
41
42 TP_printk("cq.id=%d cid=%d",
43 __entry->cq_id, __entry->completion_id
44 )
45);
46
47#define DEFINE_SIMPLE_CID_EVENT(name) \
48 DEFINE_EVENT(rpcrdma_simple_cid_class, name, \
49 TP_PROTO( \
50 const struct rpc_rdma_cid *cid \
51 ), \
52 TP_ARGS(cid) \
53 )
54
55DECLARE_EVENT_CLASS(rpcrdma_completion_class,
56 TP_PROTO(
57 const struct ib_wc *wc,
58 const struct rpc_rdma_cid *cid
59 ),
60
61 TP_ARGS(wc, cid),
62
63 TP_STRUCT__entry(
64 __field(u32, cq_id)
65 __field(int, completion_id)
66 __field(unsigned long, status)
67 __field(unsigned int, vendor_err)
68 ),
69
70 TP_fast_assign(
71 __entry->cq_id = cid->ci_queue_id;
72 __entry->completion_id = cid->ci_completion_id;
73 __entry->status = wc->status;
74 if (wc->status)
75 __entry->vendor_err = wc->vendor_err;
76 else
77 __entry->vendor_err = 0;
78 ),
79
80 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x)",
81 __entry->cq_id, __entry->completion_id,
82 rdma_show_wc_status(__entry->status),
83 __entry->status, __entry->vendor_err
84 )
85);
86
87#define DEFINE_COMPLETION_EVENT(name) \
88 DEFINE_EVENT(rpcrdma_completion_class, name, \
89 TP_PROTO( \
90 const struct ib_wc *wc, \
91 const struct rpc_rdma_cid *cid \
92 ), \
93 TP_ARGS(wc, cid))
94
95DECLARE_EVENT_CLASS(rpcrdma_send_flush_class,
96 TP_PROTO(
97 const struct ib_wc *wc,
98 const struct rpc_rdma_cid *cid
99 ),
100
101 TP_ARGS(wc, cid),
102
103 TP_STRUCT__entry(
104 __field(u32, cq_id)
105 __field(int, completion_id)
106 __field(unsigned long, status)
107 __field(unsigned int, vendor_err)
108 ),
109
110 TP_fast_assign(
111 __entry->cq_id = cid->ci_queue_id;
112 __entry->completion_id = cid->ci_completion_id;
113 __entry->status = wc->status;
114 __entry->vendor_err = wc->vendor_err;
115 ),
116
117 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x)",
118 __entry->cq_id, __entry->completion_id,
119 rdma_show_wc_status(__entry->status),
120 __entry->status, __entry->vendor_err
121 )
122);
123
124#define DEFINE_SEND_FLUSH_EVENT(name) \
125 DEFINE_EVENT(rpcrdma_send_flush_class, name, \
126 TP_PROTO( \
127 const struct ib_wc *wc, \
128 const struct rpc_rdma_cid *cid \
129 ), \
130 TP_ARGS(wc, cid))
131
132DECLARE_EVENT_CLASS(rpcrdma_mr_completion_class,
133 TP_PROTO(
134 const struct ib_wc *wc,
135 const struct rpc_rdma_cid *cid
136 ),
137
138 TP_ARGS(wc, cid),
139
140 TP_STRUCT__entry(
141 __field(u32, cq_id)
142 __field(int, completion_id)
143 __field(unsigned long, status)
144 __field(unsigned int, vendor_err)
145 ),
146
147 TP_fast_assign(
148 __entry->cq_id = cid->ci_queue_id;
149 __entry->completion_id = cid->ci_completion_id;
150 __entry->status = wc->status;
151 if (wc->status)
152 __entry->vendor_err = wc->vendor_err;
153 else
154 __entry->vendor_err = 0;
155 ),
156
157 TP_printk("cq.id=%u mr.id=%d status=%s (%lu/0x%x)",
158 __entry->cq_id, __entry->completion_id,
159 rdma_show_wc_status(__entry->status),
160 __entry->status, __entry->vendor_err
161 )
162);
163
164#define DEFINE_MR_COMPLETION_EVENT(name) \
165 DEFINE_EVENT(rpcrdma_mr_completion_class, name, \
166 TP_PROTO( \
167 const struct ib_wc *wc, \
168 const struct rpc_rdma_cid *cid \
169 ), \
170 TP_ARGS(wc, cid))
171
172DECLARE_EVENT_CLASS(rpcrdma_receive_completion_class,
173 TP_PROTO(
174 const struct ib_wc *wc,
175 const struct rpc_rdma_cid *cid
176 ),
177
178 TP_ARGS(wc, cid),
179
180 TP_STRUCT__entry(
181 __field(u32, cq_id)
182 __field(int, completion_id)
183 __field(u32, received)
184 __field(unsigned long, status)
185 __field(unsigned int, vendor_err)
186 ),
187
188 TP_fast_assign(
189 __entry->cq_id = cid->ci_queue_id;
190 __entry->completion_id = cid->ci_completion_id;
191 __entry->status = wc->status;
192 if (wc->status) {
193 __entry->received = 0;
194 __entry->vendor_err = wc->vendor_err;
195 } else {
196 __entry->received = wc->byte_len;
197 __entry->vendor_err = 0;
198 }
199 ),
200
201 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x) received=%u",
202 __entry->cq_id, __entry->completion_id,
203 rdma_show_wc_status(__entry->status),
204 __entry->status, __entry->vendor_err,
205 __entry->received
206 )
207);
208
209#define DEFINE_RECEIVE_COMPLETION_EVENT(name) \
210 DEFINE_EVENT(rpcrdma_receive_completion_class, name, \
211 TP_PROTO( \
212 const struct ib_wc *wc, \
213 const struct rpc_rdma_cid *cid \
214 ), \
215 TP_ARGS(wc, cid))
216
217DECLARE_EVENT_CLASS(rpcrdma_receive_success_class,
218 TP_PROTO(
219 const struct ib_wc *wc,
220 const struct rpc_rdma_cid *cid
221 ),
222
223 TP_ARGS(wc, cid),
224
225 TP_STRUCT__entry(
226 __field(u32, cq_id)
227 __field(int, completion_id)
228 __field(u32, received)
229 ),
230
231 TP_fast_assign(
232 __entry->cq_id = cid->ci_queue_id;
233 __entry->completion_id = cid->ci_completion_id;
234 __entry->received = wc->byte_len;
235 ),
236
237 TP_printk("cq.id=%u cid=%d received=%u",
238 __entry->cq_id, __entry->completion_id,
239 __entry->received
240 )
241);
242
243#define DEFINE_RECEIVE_SUCCESS_EVENT(name) \
244 DEFINE_EVENT(rpcrdma_receive_success_class, name, \
245 TP_PROTO( \
246 const struct ib_wc *wc, \
247 const struct rpc_rdma_cid *cid \
248 ), \
249 TP_ARGS(wc, cid))
250
251DECLARE_EVENT_CLASS(rpcrdma_receive_flush_class,
252 TP_PROTO(
253 const struct ib_wc *wc,
254 const struct rpc_rdma_cid *cid
255 ),
256
257 TP_ARGS(wc, cid),
258
259 TP_STRUCT__entry(
260 __field(u32, cq_id)
261 __field(int, completion_id)
262 __field(unsigned long, status)
263 __field(unsigned int, vendor_err)
264 ),
265
266 TP_fast_assign(
267 __entry->cq_id = cid->ci_queue_id;
268 __entry->completion_id = cid->ci_completion_id;
269 __entry->status = wc->status;
270 __entry->vendor_err = wc->vendor_err;
271 ),
272
273 TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x)",
274 __entry->cq_id, __entry->completion_id,
275 rdma_show_wc_status(__entry->status),
276 __entry->status, __entry->vendor_err
277 )
278);
279
280#define DEFINE_RECEIVE_FLUSH_EVENT(name) \
281 DEFINE_EVENT(rpcrdma_receive_flush_class, name, \
282 TP_PROTO( \
283 const struct ib_wc *wc, \
284 const struct rpc_rdma_cid *cid \
285 ), \
286 TP_ARGS(wc, cid))
287
288DECLARE_EVENT_CLASS(xprtrdma_reply_class,
289 TP_PROTO(
290 const struct rpcrdma_rep *rep
291 ),
292
293 TP_ARGS(rep),
294
295 TP_STRUCT__entry(
296 __field(u32, xid)
297 __field(u32, version)
298 __field(u32, proc)
299 __string(addr, rpcrdma_addrstr(rep->rr_rxprt))
300 __string(port, rpcrdma_portstr(rep->rr_rxprt))
301 ),
302
303 TP_fast_assign(
304 __entry->xid = be32_to_cpu(rep->rr_xid);
305 __entry->version = be32_to_cpu(rep->rr_vers);
306 __entry->proc = be32_to_cpu(rep->rr_proc);
307 __assign_str(addr, rpcrdma_addrstr(rep->rr_rxprt));
308 __assign_str(port, rpcrdma_portstr(rep->rr_rxprt));
309 ),
310
311 TP_printk("peer=[%s]:%s xid=0x%08x version=%u proc=%u",
312 __get_str(addr), __get_str(port),
313 __entry->xid, __entry->version, __entry->proc
314 )
315);
316
317#define DEFINE_REPLY_EVENT(name) \
318 DEFINE_EVENT(xprtrdma_reply_class, \
319 xprtrdma_reply_##name##_err, \
320 TP_PROTO( \
321 const struct rpcrdma_rep *rep \
322 ), \
323 TP_ARGS(rep))
324
325DECLARE_EVENT_CLASS(xprtrdma_rxprt,
326 TP_PROTO(
327 const struct rpcrdma_xprt *r_xprt
328 ),
329
330 TP_ARGS(r_xprt),
331
332 TP_STRUCT__entry(
333 __string(addr, rpcrdma_addrstr(r_xprt))
334 __string(port, rpcrdma_portstr(r_xprt))
335 ),
336
337 TP_fast_assign(
338 __assign_str(addr, rpcrdma_addrstr(r_xprt));
339 __assign_str(port, rpcrdma_portstr(r_xprt));
340 ),
341
342 TP_printk("peer=[%s]:%s",
343 __get_str(addr), __get_str(port)
344 )
345);
346
347#define DEFINE_RXPRT_EVENT(name) \
348 DEFINE_EVENT(xprtrdma_rxprt, name, \
349 TP_PROTO( \
350 const struct rpcrdma_xprt *r_xprt \
351 ), \
352 TP_ARGS(r_xprt))
353
354DECLARE_EVENT_CLASS(xprtrdma_connect_class,
355 TP_PROTO(
356 const struct rpcrdma_xprt *r_xprt,
357 int rc
358 ),
359
360 TP_ARGS(r_xprt, rc),
361
362 TP_STRUCT__entry(
363 __field(int, rc)
364 __field(int, connect_status)
365 __string(addr, rpcrdma_addrstr(r_xprt))
366 __string(port, rpcrdma_portstr(r_xprt))
367 ),
368
369 TP_fast_assign(
370 __entry->rc = rc;
371 __entry->connect_status = r_xprt->rx_ep->re_connect_status;
372 __assign_str(addr, rpcrdma_addrstr(r_xprt));
373 __assign_str(port, rpcrdma_portstr(r_xprt));
374 ),
375
376 TP_printk("peer=[%s]:%s rc=%d connection status=%d",
377 __get_str(addr), __get_str(port),
378 __entry->rc, __entry->connect_status
379 )
380);
381
382#define DEFINE_CONN_EVENT(name) \
383 DEFINE_EVENT(xprtrdma_connect_class, xprtrdma_##name, \
384 TP_PROTO( \
385 const struct rpcrdma_xprt *r_xprt, \
386 int rc \
387 ), \
388 TP_ARGS(r_xprt, rc))
389
390DECLARE_EVENT_CLASS(xprtrdma_rdch_event,
391 TP_PROTO(
392 const struct rpc_task *task,
393 unsigned int pos,
394 struct rpcrdma_mr *mr,
395 int nsegs
396 ),
397
398 TP_ARGS(task, pos, mr, nsegs),
399
400 TP_STRUCT__entry(
401 __field(unsigned int, task_id)
402 __field(unsigned int, client_id)
403 __field(unsigned int, pos)
404 __field(int, nents)
405 __field(u32, handle)
406 __field(u32, length)
407 __field(u64, offset)
408 __field(int, nsegs)
409 ),
410
411 TP_fast_assign(
412 __entry->task_id = task->tk_pid;
413 __entry->client_id = task->tk_client->cl_clid;
414 __entry->pos = pos;
415 __entry->nents = mr->mr_nents;
416 __entry->handle = mr->mr_handle;
417 __entry->length = mr->mr_length;
418 __entry->offset = mr->mr_offset;
419 __entry->nsegs = nsegs;
420 ),
421
422 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
423 " pos=%u %u@0x%016llx:0x%08x (%s)",
424 __entry->task_id, __entry->client_id,
425 __entry->pos, __entry->length,
426 (unsigned long long)__entry->offset, __entry->handle,
427 __entry->nents < __entry->nsegs ? "more" : "last"
428 )
429);
430
431#define DEFINE_RDCH_EVENT(name) \
432 DEFINE_EVENT(xprtrdma_rdch_event, xprtrdma_chunk_##name,\
433 TP_PROTO( \
434 const struct rpc_task *task, \
435 unsigned int pos, \
436 struct rpcrdma_mr *mr, \
437 int nsegs \
438 ), \
439 TP_ARGS(task, pos, mr, nsegs))
440
441DECLARE_EVENT_CLASS(xprtrdma_wrch_event,
442 TP_PROTO(
443 const struct rpc_task *task,
444 struct rpcrdma_mr *mr,
445 int nsegs
446 ),
447
448 TP_ARGS(task, mr, nsegs),
449
450 TP_STRUCT__entry(
451 __field(unsigned int, task_id)
452 __field(unsigned int, client_id)
453 __field(int, nents)
454 __field(u32, handle)
455 __field(u32, length)
456 __field(u64, offset)
457 __field(int, nsegs)
458 ),
459
460 TP_fast_assign(
461 __entry->task_id = task->tk_pid;
462 __entry->client_id = task->tk_client->cl_clid;
463 __entry->nents = mr->mr_nents;
464 __entry->handle = mr->mr_handle;
465 __entry->length = mr->mr_length;
466 __entry->offset = mr->mr_offset;
467 __entry->nsegs = nsegs;
468 ),
469
470 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
471 " %u@0x%016llx:0x%08x (%s)",
472 __entry->task_id, __entry->client_id,
473 __entry->length, (unsigned long long)__entry->offset,
474 __entry->handle,
475 __entry->nents < __entry->nsegs ? "more" : "last"
476 )
477);
478
479#define DEFINE_WRCH_EVENT(name) \
480 DEFINE_EVENT(xprtrdma_wrch_event, xprtrdma_chunk_##name,\
481 TP_PROTO( \
482 const struct rpc_task *task, \
483 struct rpcrdma_mr *mr, \
484 int nsegs \
485 ), \
486 TP_ARGS(task, mr, nsegs))
487
488TRACE_DEFINE_ENUM(DMA_BIDIRECTIONAL);
489TRACE_DEFINE_ENUM(DMA_TO_DEVICE);
490TRACE_DEFINE_ENUM(DMA_FROM_DEVICE);
491TRACE_DEFINE_ENUM(DMA_NONE);
492
493#define xprtrdma_show_direction(x) \
494 __print_symbolic(x, \
495 { DMA_BIDIRECTIONAL, "BIDIR" }, \
496 { DMA_TO_DEVICE, "TO_DEVICE" }, \
497 { DMA_FROM_DEVICE, "FROM_DEVICE" }, \
498 { DMA_NONE, "NONE" })
499
500DECLARE_EVENT_CLASS(xprtrdma_mr_class,
501 TP_PROTO(
502 const struct rpcrdma_mr *mr
503 ),
504
505 TP_ARGS(mr),
506
507 TP_STRUCT__entry(
508 __field(unsigned int, task_id)
509 __field(unsigned int, client_id)
510 __field(u32, mr_id)
511 __field(int, nents)
512 __field(u32, handle)
513 __field(u32, length)
514 __field(u64, offset)
515 __field(u32, dir)
516 ),
517
518 TP_fast_assign(
519 const struct rpcrdma_req *req = mr->mr_req;
520
521 if (req) {
522 const struct rpc_task *task = req->rl_slot.rq_task;
523
524 __entry->task_id = task->tk_pid;
525 __entry->client_id = task->tk_client->cl_clid;
526 } else {
527 __entry->task_id = 0;
528 __entry->client_id = -1;
529 }
530 __entry->mr_id = mr->mr_ibmr->res.id;
531 __entry->nents = mr->mr_nents;
532 __entry->handle = mr->mr_handle;
533 __entry->length = mr->mr_length;
534 __entry->offset = mr->mr_offset;
535 __entry->dir = mr->mr_dir;
536 ),
537
538 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
539 " mr.id=%u nents=%d %u@0x%016llx:0x%08x (%s)",
540 __entry->task_id, __entry->client_id,
541 __entry->mr_id, __entry->nents, __entry->length,
542 (unsigned long long)__entry->offset, __entry->handle,
543 xprtrdma_show_direction(__entry->dir)
544 )
545);
546
547#define DEFINE_MR_EVENT(name) \
548 DEFINE_EVENT(xprtrdma_mr_class, \
549 xprtrdma_mr_##name, \
550 TP_PROTO( \
551 const struct rpcrdma_mr *mr \
552 ), \
553 TP_ARGS(mr))
554
555DECLARE_EVENT_CLASS(xprtrdma_anonymous_mr_class,
556 TP_PROTO(
557 const struct rpcrdma_mr *mr
558 ),
559
560 TP_ARGS(mr),
561
562 TP_STRUCT__entry(
563 __field(u32, mr_id)
564 __field(int, nents)
565 __field(u32, handle)
566 __field(u32, length)
567 __field(u64, offset)
568 __field(u32, dir)
569 ),
570
571 TP_fast_assign(
572 __entry->mr_id = mr->mr_ibmr->res.id;
573 __entry->nents = mr->mr_nents;
574 __entry->handle = mr->mr_handle;
575 __entry->length = mr->mr_length;
576 __entry->offset = mr->mr_offset;
577 __entry->dir = mr->mr_dir;
578 ),
579
580 TP_printk("mr.id=%u nents=%d %u@0x%016llx:0x%08x (%s)",
581 __entry->mr_id, __entry->nents, __entry->length,
582 (unsigned long long)__entry->offset, __entry->handle,
583 xprtrdma_show_direction(__entry->dir)
584 )
585);
586
587#define DEFINE_ANON_MR_EVENT(name) \
588 DEFINE_EVENT(xprtrdma_anonymous_mr_class, \
589 xprtrdma_mr_##name, \
590 TP_PROTO( \
591 const struct rpcrdma_mr *mr \
592 ), \
593 TP_ARGS(mr))
594
595DECLARE_EVENT_CLASS(xprtrdma_callback_class,
596 TP_PROTO(
597 const struct rpcrdma_xprt *r_xprt,
598 const struct rpc_rqst *rqst
599 ),
600
601 TP_ARGS(r_xprt, rqst),
602
603 TP_STRUCT__entry(
604 __field(u32, xid)
605 __string(addr, rpcrdma_addrstr(r_xprt))
606 __string(port, rpcrdma_portstr(r_xprt))
607 ),
608
609 TP_fast_assign(
610 __entry->xid = be32_to_cpu(rqst->rq_xid);
611 __assign_str(addr, rpcrdma_addrstr(r_xprt));
612 __assign_str(port, rpcrdma_portstr(r_xprt));
613 ),
614
615 TP_printk("peer=[%s]:%s xid=0x%08x",
616 __get_str(addr), __get_str(port), __entry->xid
617 )
618);
619
620#define DEFINE_CALLBACK_EVENT(name) \
621 DEFINE_EVENT(xprtrdma_callback_class, \
622 xprtrdma_cb_##name, \
623 TP_PROTO( \
624 const struct rpcrdma_xprt *r_xprt, \
625 const struct rpc_rqst *rqst \
626 ), \
627 TP_ARGS(r_xprt, rqst))
628
629/**
630 ** Connection events
631 **/
632
633TRACE_EVENT(xprtrdma_inline_thresh,
634 TP_PROTO(
635 const struct rpcrdma_ep *ep
636 ),
637
638 TP_ARGS(ep),
639
640 TP_STRUCT__entry(
641 __field(unsigned int, inline_send)
642 __field(unsigned int, inline_recv)
643 __field(unsigned int, max_send)
644 __field(unsigned int, max_recv)
645 __array(unsigned char, srcaddr, sizeof(struct sockaddr_in6))
646 __array(unsigned char, dstaddr, sizeof(struct sockaddr_in6))
647 ),
648
649 TP_fast_assign(
650 const struct rdma_cm_id *id = ep->re_id;
651
652 __entry->inline_send = ep->re_inline_send;
653 __entry->inline_recv = ep->re_inline_recv;
654 __entry->max_send = ep->re_max_inline_send;
655 __entry->max_recv = ep->re_max_inline_recv;
656 memcpy(__entry->srcaddr, &id->route.addr.src_addr,
657 sizeof(struct sockaddr_in6));
658 memcpy(__entry->dstaddr, &id->route.addr.dst_addr,
659 sizeof(struct sockaddr_in6));
660 ),
661
662 TP_printk("%pISpc -> %pISpc neg send/recv=%u/%u, calc send/recv=%u/%u",
663 __entry->srcaddr, __entry->dstaddr,
664 __entry->inline_send, __entry->inline_recv,
665 __entry->max_send, __entry->max_recv
666 )
667);
668
669DEFINE_CONN_EVENT(connect);
670DEFINE_CONN_EVENT(disconnect);
671
672DEFINE_RXPRT_EVENT(xprtrdma_op_inject_dsc);
673
674TRACE_EVENT(xprtrdma_op_connect,
675 TP_PROTO(
676 const struct rpcrdma_xprt *r_xprt,
677 unsigned long delay
678 ),
679
680 TP_ARGS(r_xprt, delay),
681
682 TP_STRUCT__entry(
683 __field(unsigned long, delay)
684 __string(addr, rpcrdma_addrstr(r_xprt))
685 __string(port, rpcrdma_portstr(r_xprt))
686 ),
687
688 TP_fast_assign(
689 __entry->delay = delay;
690 __assign_str(addr, rpcrdma_addrstr(r_xprt));
691 __assign_str(port, rpcrdma_portstr(r_xprt));
692 ),
693
694 TP_printk("peer=[%s]:%s delay=%lu",
695 __get_str(addr), __get_str(port), __entry->delay
696 )
697);
698
699
700TRACE_EVENT(xprtrdma_op_set_cto,
701 TP_PROTO(
702 const struct rpcrdma_xprt *r_xprt,
703 unsigned long connect,
704 unsigned long reconnect
705 ),
706
707 TP_ARGS(r_xprt, connect, reconnect),
708
709 TP_STRUCT__entry(
710 __field(unsigned long, connect)
711 __field(unsigned long, reconnect)
712 __string(addr, rpcrdma_addrstr(r_xprt))
713 __string(port, rpcrdma_portstr(r_xprt))
714 ),
715
716 TP_fast_assign(
717 __entry->connect = connect;
718 __entry->reconnect = reconnect;
719 __assign_str(addr, rpcrdma_addrstr(r_xprt));
720 __assign_str(port, rpcrdma_portstr(r_xprt));
721 ),
722
723 TP_printk("peer=[%s]:%s connect=%lu reconnect=%lu",
724 __get_str(addr), __get_str(port),
725 __entry->connect / HZ, __entry->reconnect / HZ
726 )
727);
728
729/**
730 ** Call events
731 **/
732
733TRACE_EVENT(xprtrdma_createmrs,
734 TP_PROTO(
735 const struct rpcrdma_xprt *r_xprt,
736 unsigned int count
737 ),
738
739 TP_ARGS(r_xprt, count),
740
741 TP_STRUCT__entry(
742 __string(addr, rpcrdma_addrstr(r_xprt))
743 __string(port, rpcrdma_portstr(r_xprt))
744 __field(unsigned int, count)
745 ),
746
747 TP_fast_assign(
748 __entry->count = count;
749 __assign_str(addr, rpcrdma_addrstr(r_xprt));
750 __assign_str(port, rpcrdma_portstr(r_xprt));
751 ),
752
753 TP_printk("peer=[%s]:%s created %u MRs",
754 __get_str(addr), __get_str(port), __entry->count
755 )
756);
757
758TRACE_EVENT(xprtrdma_nomrs_err,
759 TP_PROTO(
760 const struct rpcrdma_xprt *r_xprt,
761 const struct rpcrdma_req *req
762 ),
763
764 TP_ARGS(r_xprt, req),
765
766 TP_STRUCT__entry(
767 __field(unsigned int, task_id)
768 __field(unsigned int, client_id)
769 __string(addr, rpcrdma_addrstr(r_xprt))
770 __string(port, rpcrdma_portstr(r_xprt))
771 ),
772
773 TP_fast_assign(
774 const struct rpc_rqst *rqst = &req->rl_slot;
775
776 __entry->task_id = rqst->rq_task->tk_pid;
777 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
778 __assign_str(addr, rpcrdma_addrstr(r_xprt));
779 __assign_str(port, rpcrdma_portstr(r_xprt));
780 ),
781
782 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " peer=[%s]:%s",
783 __entry->task_id, __entry->client_id,
784 __get_str(addr), __get_str(port)
785 )
786);
787
788DEFINE_RDCH_EVENT(read);
789DEFINE_WRCH_EVENT(write);
790DEFINE_WRCH_EVENT(reply);
791DEFINE_WRCH_EVENT(wp);
792
793TRACE_DEFINE_ENUM(rpcrdma_noch);
794TRACE_DEFINE_ENUM(rpcrdma_noch_pullup);
795TRACE_DEFINE_ENUM(rpcrdma_noch_mapped);
796TRACE_DEFINE_ENUM(rpcrdma_readch);
797TRACE_DEFINE_ENUM(rpcrdma_areadch);
798TRACE_DEFINE_ENUM(rpcrdma_writech);
799TRACE_DEFINE_ENUM(rpcrdma_replych);
800
801#define xprtrdma_show_chunktype(x) \
802 __print_symbolic(x, \
803 { rpcrdma_noch, "inline" }, \
804 { rpcrdma_noch_pullup, "pullup" }, \
805 { rpcrdma_noch_mapped, "mapped" }, \
806 { rpcrdma_readch, "read list" }, \
807 { rpcrdma_areadch, "*read list" }, \
808 { rpcrdma_writech, "write list" }, \
809 { rpcrdma_replych, "reply chunk" })
810
811TRACE_EVENT(xprtrdma_marshal,
812 TP_PROTO(
813 const struct rpcrdma_req *req,
814 unsigned int rtype,
815 unsigned int wtype
816 ),
817
818 TP_ARGS(req, rtype, wtype),
819
820 TP_STRUCT__entry(
821 __field(unsigned int, task_id)
822 __field(unsigned int, client_id)
823 __field(u32, xid)
824 __field(unsigned int, hdrlen)
825 __field(unsigned int, headlen)
826 __field(unsigned int, pagelen)
827 __field(unsigned int, taillen)
828 __field(unsigned int, rtype)
829 __field(unsigned int, wtype)
830 ),
831
832 TP_fast_assign(
833 const struct rpc_rqst *rqst = &req->rl_slot;
834
835 __entry->task_id = rqst->rq_task->tk_pid;
836 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
837 __entry->xid = be32_to_cpu(rqst->rq_xid);
838 __entry->hdrlen = req->rl_hdrbuf.len;
839 __entry->headlen = rqst->rq_snd_buf.head[0].iov_len;
840 __entry->pagelen = rqst->rq_snd_buf.page_len;
841 __entry->taillen = rqst->rq_snd_buf.tail[0].iov_len;
842 __entry->rtype = rtype;
843 __entry->wtype = wtype;
844 ),
845
846 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER
847 " xid=0x%08x hdr=%u xdr=%u/%u/%u %s/%s",
848 __entry->task_id, __entry->client_id, __entry->xid,
849 __entry->hdrlen,
850 __entry->headlen, __entry->pagelen, __entry->taillen,
851 xprtrdma_show_chunktype(__entry->rtype),
852 xprtrdma_show_chunktype(__entry->wtype)
853 )
854);
855
856TRACE_EVENT(xprtrdma_marshal_failed,
857 TP_PROTO(const struct rpc_rqst *rqst,
858 int ret
859 ),
860
861 TP_ARGS(rqst, ret),
862
863 TP_STRUCT__entry(
864 __field(unsigned int, task_id)
865 __field(unsigned int, client_id)
866 __field(u32, xid)
867 __field(int, ret)
868 ),
869
870 TP_fast_assign(
871 __entry->task_id = rqst->rq_task->tk_pid;
872 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
873 __entry->xid = be32_to_cpu(rqst->rq_xid);
874 __entry->ret = ret;
875 ),
876
877 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x ret=%d",
878 __entry->task_id, __entry->client_id, __entry->xid,
879 __entry->ret
880 )
881);
882
883TRACE_EVENT(xprtrdma_prepsend_failed,
884 TP_PROTO(const struct rpc_rqst *rqst,
885 int ret
886 ),
887
888 TP_ARGS(rqst, ret),
889
890 TP_STRUCT__entry(
891 __field(unsigned int, task_id)
892 __field(unsigned int, client_id)
893 __field(u32, xid)
894 __field(int, ret)
895 ),
896
897 TP_fast_assign(
898 __entry->task_id = rqst->rq_task->tk_pid;
899 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
900 __entry->xid = be32_to_cpu(rqst->rq_xid);
901 __entry->ret = ret;
902 ),
903
904 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x ret=%d",
905 __entry->task_id, __entry->client_id, __entry->xid,
906 __entry->ret
907 )
908);
909
910TRACE_EVENT(xprtrdma_post_send,
911 TP_PROTO(
912 const struct rpcrdma_req *req
913 ),
914
915 TP_ARGS(req),
916
917 TP_STRUCT__entry(
918 __field(u32, cq_id)
919 __field(int, completion_id)
920 __field(unsigned int, task_id)
921 __field(unsigned int, client_id)
922 __field(int, num_sge)
923 __field(int, signaled)
924 ),
925
926 TP_fast_assign(
927 const struct rpc_rqst *rqst = &req->rl_slot;
928 const struct rpcrdma_sendctx *sc = req->rl_sendctx;
929
930 __entry->cq_id = sc->sc_cid.ci_queue_id;
931 __entry->completion_id = sc->sc_cid.ci_completion_id;
932 __entry->task_id = rqst->rq_task->tk_pid;
933 __entry->client_id = rqst->rq_task->tk_client ?
934 rqst->rq_task->tk_client->cl_clid : -1;
935 __entry->num_sge = req->rl_wr.num_sge;
936 __entry->signaled = req->rl_wr.send_flags & IB_SEND_SIGNALED;
937 ),
938
939 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " cq.id=%u cid=%d (%d SGE%s) %s",
940 __entry->task_id, __entry->client_id,
941 __entry->cq_id, __entry->completion_id,
942 __entry->num_sge, (__entry->num_sge == 1 ? "" : "s"),
943 (__entry->signaled ? "signaled" : "")
944 )
945);
946
947TRACE_EVENT(xprtrdma_post_send_err,
948 TP_PROTO(
949 const struct rpcrdma_xprt *r_xprt,
950 const struct rpcrdma_req *req,
951 int rc
952 ),
953
954 TP_ARGS(r_xprt, req, rc),
955
956 TP_STRUCT__entry(
957 __field(u32, cq_id)
958 __field(unsigned int, task_id)
959 __field(unsigned int, client_id)
960 __field(int, rc)
961 ),
962
963 TP_fast_assign(
964 const struct rpc_rqst *rqst = &req->rl_slot;
965 const struct rpcrdma_ep *ep = r_xprt->rx_ep;
966
967 __entry->cq_id = ep ? ep->re_attr.recv_cq->res.id : 0;
968 __entry->task_id = rqst->rq_task->tk_pid;
969 __entry->client_id = rqst->rq_task->tk_client ?
970 rqst->rq_task->tk_client->cl_clid : -1;
971 __entry->rc = rc;
972 ),
973
974 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " cq.id=%u rc=%d",
975 __entry->task_id, __entry->client_id,
976 __entry->cq_id, __entry->rc
977 )
978);
979
980DEFINE_SIMPLE_CID_EVENT(xprtrdma_post_recv);
981
982TRACE_EVENT(xprtrdma_post_recvs,
983 TP_PROTO(
984 const struct rpcrdma_xprt *r_xprt,
985 unsigned int count
986 ),
987
988 TP_ARGS(r_xprt, count),
989
990 TP_STRUCT__entry(
991 __field(u32, cq_id)
992 __field(unsigned int, count)
993 __field(int, posted)
994 __string(addr, rpcrdma_addrstr(r_xprt))
995 __string(port, rpcrdma_portstr(r_xprt))
996 ),
997
998 TP_fast_assign(
999 const struct rpcrdma_ep *ep = r_xprt->rx_ep;
1000
1001 __entry->cq_id = ep->re_attr.recv_cq->res.id;
1002 __entry->count = count;
1003 __entry->posted = ep->re_receive_count;
1004 __assign_str(addr, rpcrdma_addrstr(r_xprt));
1005 __assign_str(port, rpcrdma_portstr(r_xprt));
1006 ),
1007
1008 TP_printk("peer=[%s]:%s cq.id=%d %u new recvs, %d active",
1009 __get_str(addr), __get_str(port), __entry->cq_id,
1010 __entry->count, __entry->posted
1011 )
1012);
1013
1014TRACE_EVENT(xprtrdma_post_recvs_err,
1015 TP_PROTO(
1016 const struct rpcrdma_xprt *r_xprt,
1017 int status
1018 ),
1019
1020 TP_ARGS(r_xprt, status),
1021
1022 TP_STRUCT__entry(
1023 __field(u32, cq_id)
1024 __field(int, status)
1025 __string(addr, rpcrdma_addrstr(r_xprt))
1026 __string(port, rpcrdma_portstr(r_xprt))
1027 ),
1028
1029 TP_fast_assign(
1030 const struct rpcrdma_ep *ep = r_xprt->rx_ep;
1031
1032 __entry->cq_id = ep->re_attr.recv_cq->res.id;
1033 __entry->status = status;
1034 __assign_str(addr, rpcrdma_addrstr(r_xprt));
1035 __assign_str(port, rpcrdma_portstr(r_xprt));
1036 ),
1037
1038 TP_printk("peer=[%s]:%s cq.id=%d rc=%d",
1039 __get_str(addr), __get_str(port), __entry->cq_id,
1040 __entry->status
1041 )
1042);
1043
1044TRACE_EVENT(xprtrdma_post_linv_err,
1045 TP_PROTO(
1046 const struct rpcrdma_req *req,
1047 int status
1048 ),
1049
1050 TP_ARGS(req, status),
1051
1052 TP_STRUCT__entry(
1053 __field(unsigned int, task_id)
1054 __field(unsigned int, client_id)
1055 __field(int, status)
1056 ),
1057
1058 TP_fast_assign(
1059 const struct rpc_task *task = req->rl_slot.rq_task;
1060
1061 __entry->task_id = task->tk_pid;
1062 __entry->client_id = task->tk_client->cl_clid;
1063 __entry->status = status;
1064 ),
1065
1066 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " status=%d",
1067 __entry->task_id, __entry->client_id, __entry->status
1068 )
1069);
1070
1071/**
1072 ** Completion events
1073 **/
1074
1075DEFINE_RECEIVE_COMPLETION_EVENT(xprtrdma_wc_receive);
1076
1077DEFINE_COMPLETION_EVENT(xprtrdma_wc_send);
1078DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_fastreg);
1079DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_li);
1080DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_li_wake);
1081DEFINE_MR_COMPLETION_EVENT(xprtrdma_wc_li_done);
1082
1083TRACE_EVENT(xprtrdma_frwr_alloc,
1084 TP_PROTO(
1085 const struct rpcrdma_mr *mr,
1086 int rc
1087 ),
1088
1089 TP_ARGS(mr, rc),
1090
1091 TP_STRUCT__entry(
1092 __field(u32, mr_id)
1093 __field(int, rc)
1094 ),
1095
1096 TP_fast_assign(
1097 __entry->mr_id = mr->mr_ibmr->res.id;
1098 __entry->rc = rc;
1099 ),
1100
1101 TP_printk("mr.id=%u: rc=%d",
1102 __entry->mr_id, __entry->rc
1103 )
1104);
1105
1106TRACE_EVENT(xprtrdma_frwr_dereg,
1107 TP_PROTO(
1108 const struct rpcrdma_mr *mr,
1109 int rc
1110 ),
1111
1112 TP_ARGS(mr, rc),
1113
1114 TP_STRUCT__entry(
1115 __field(u32, mr_id)
1116 __field(int, nents)
1117 __field(u32, handle)
1118 __field(u32, length)
1119 __field(u64, offset)
1120 __field(u32, dir)
1121 __field(int, rc)
1122 ),
1123
1124 TP_fast_assign(
1125 __entry->mr_id = mr->mr_ibmr->res.id;
1126 __entry->nents = mr->mr_nents;
1127 __entry->handle = mr->mr_handle;
1128 __entry->length = mr->mr_length;
1129 __entry->offset = mr->mr_offset;
1130 __entry->dir = mr->mr_dir;
1131 __entry->rc = rc;
1132 ),
1133
1134 TP_printk("mr.id=%u nents=%d %u@0x%016llx:0x%08x (%s): rc=%d",
1135 __entry->mr_id, __entry->nents, __entry->length,
1136 (unsigned long long)__entry->offset, __entry->handle,
1137 xprtrdma_show_direction(__entry->dir),
1138 __entry->rc
1139 )
1140);
1141
1142TRACE_EVENT(xprtrdma_frwr_sgerr,
1143 TP_PROTO(
1144 const struct rpcrdma_mr *mr,
1145 int sg_nents
1146 ),
1147
1148 TP_ARGS(mr, sg_nents),
1149
1150 TP_STRUCT__entry(
1151 __field(u32, mr_id)
1152 __field(u64, addr)
1153 __field(u32, dir)
1154 __field(int, nents)
1155 ),
1156
1157 TP_fast_assign(
1158 __entry->mr_id = mr->mr_ibmr->res.id;
1159 __entry->addr = mr->mr_sg->dma_address;
1160 __entry->dir = mr->mr_dir;
1161 __entry->nents = sg_nents;
1162 ),
1163
1164 TP_printk("mr.id=%u DMA addr=0x%llx (%s) sg_nents=%d",
1165 __entry->mr_id, __entry->addr,
1166 xprtrdma_show_direction(__entry->dir),
1167 __entry->nents
1168 )
1169);
1170
1171TRACE_EVENT(xprtrdma_frwr_maperr,
1172 TP_PROTO(
1173 const struct rpcrdma_mr *mr,
1174 int num_mapped
1175 ),
1176
1177 TP_ARGS(mr, num_mapped),
1178
1179 TP_STRUCT__entry(
1180 __field(u32, mr_id)
1181 __field(u64, addr)
1182 __field(u32, dir)
1183 __field(int, num_mapped)
1184 __field(int, nents)
1185 ),
1186
1187 TP_fast_assign(
1188 __entry->mr_id = mr->mr_ibmr->res.id;
1189 __entry->addr = mr->mr_sg->dma_address;
1190 __entry->dir = mr->mr_dir;
1191 __entry->num_mapped = num_mapped;
1192 __entry->nents = mr->mr_nents;
1193 ),
1194
1195 TP_printk("mr.id=%u DMA addr=0x%llx (%s) nents=%d of %d",
1196 __entry->mr_id, __entry->addr,
1197 xprtrdma_show_direction(__entry->dir),
1198 __entry->num_mapped, __entry->nents
1199 )
1200);
1201
1202DEFINE_MR_EVENT(fastreg);
1203DEFINE_MR_EVENT(localinv);
1204DEFINE_MR_EVENT(reminv);
1205DEFINE_MR_EVENT(map);
1206
1207DEFINE_ANON_MR_EVENT(unmap);
1208
1209TRACE_EVENT(xprtrdma_dma_maperr,
1210 TP_PROTO(
1211 u64 addr
1212 ),
1213
1214 TP_ARGS(addr),
1215
1216 TP_STRUCT__entry(
1217 __field(u64, addr)
1218 ),
1219
1220 TP_fast_assign(
1221 __entry->addr = addr;
1222 ),
1223
1224 TP_printk("dma addr=0x%llx\n", __entry->addr)
1225);
1226
1227/**
1228 ** Reply events
1229 **/
1230
1231TRACE_EVENT(xprtrdma_reply,
1232 TP_PROTO(
1233 const struct rpc_task *task,
1234 const struct rpcrdma_rep *rep,
1235 unsigned int credits
1236 ),
1237
1238 TP_ARGS(task, rep, credits),
1239
1240 TP_STRUCT__entry(
1241 __field(unsigned int, task_id)
1242 __field(unsigned int, client_id)
1243 __field(u32, xid)
1244 __field(unsigned int, credits)
1245 ),
1246
1247 TP_fast_assign(
1248 __entry->task_id = task->tk_pid;
1249 __entry->client_id = task->tk_client->cl_clid;
1250 __entry->xid = be32_to_cpu(rep->rr_xid);
1251 __entry->credits = credits;
1252 ),
1253
1254 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x credits=%u",
1255 __entry->task_id, __entry->client_id, __entry->xid,
1256 __entry->credits
1257 )
1258);
1259
1260DEFINE_REPLY_EVENT(vers);
1261DEFINE_REPLY_EVENT(rqst);
1262DEFINE_REPLY_EVENT(short);
1263DEFINE_REPLY_EVENT(hdr);
1264
1265TRACE_EVENT(xprtrdma_err_vers,
1266 TP_PROTO(
1267 const struct rpc_rqst *rqst,
1268 __be32 *min,
1269 __be32 *max
1270 ),
1271
1272 TP_ARGS(rqst, min, max),
1273
1274 TP_STRUCT__entry(
1275 __field(unsigned int, task_id)
1276 __field(unsigned int, client_id)
1277 __field(u32, xid)
1278 __field(u32, min)
1279 __field(u32, max)
1280 ),
1281
1282 TP_fast_assign(
1283 __entry->task_id = rqst->rq_task->tk_pid;
1284 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1285 __entry->xid = be32_to_cpu(rqst->rq_xid);
1286 __entry->min = be32_to_cpup(min);
1287 __entry->max = be32_to_cpup(max);
1288 ),
1289
1290 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x versions=[%u, %u]",
1291 __entry->task_id, __entry->client_id, __entry->xid,
1292 __entry->min, __entry->max
1293 )
1294);
1295
1296TRACE_EVENT(xprtrdma_err_chunk,
1297 TP_PROTO(
1298 const struct rpc_rqst *rqst
1299 ),
1300
1301 TP_ARGS(rqst),
1302
1303 TP_STRUCT__entry(
1304 __field(unsigned int, task_id)
1305 __field(unsigned int, client_id)
1306 __field(u32, xid)
1307 ),
1308
1309 TP_fast_assign(
1310 __entry->task_id = rqst->rq_task->tk_pid;
1311 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1312 __entry->xid = be32_to_cpu(rqst->rq_xid);
1313 ),
1314
1315 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x",
1316 __entry->task_id, __entry->client_id, __entry->xid
1317 )
1318);
1319
1320TRACE_EVENT(xprtrdma_err_unrecognized,
1321 TP_PROTO(
1322 const struct rpc_rqst *rqst,
1323 __be32 *procedure
1324 ),
1325
1326 TP_ARGS(rqst, procedure),
1327
1328 TP_STRUCT__entry(
1329 __field(unsigned int, task_id)
1330 __field(unsigned int, client_id)
1331 __field(u32, xid)
1332 __field(u32, procedure)
1333 ),
1334
1335 TP_fast_assign(
1336 __entry->task_id = rqst->rq_task->tk_pid;
1337 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1338 __entry->procedure = be32_to_cpup(procedure);
1339 ),
1340
1341 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " xid=0x%08x procedure=%u",
1342 __entry->task_id, __entry->client_id, __entry->xid,
1343 __entry->procedure
1344 )
1345);
1346
1347TRACE_EVENT(xprtrdma_fixup,
1348 TP_PROTO(
1349 const struct rpc_rqst *rqst,
1350 unsigned long fixup
1351 ),
1352
1353 TP_ARGS(rqst, fixup),
1354
1355 TP_STRUCT__entry(
1356 __field(unsigned int, task_id)
1357 __field(unsigned int, client_id)
1358 __field(unsigned long, fixup)
1359 __field(size_t, headlen)
1360 __field(unsigned int, pagelen)
1361 __field(size_t, taillen)
1362 ),
1363
1364 TP_fast_assign(
1365 __entry->task_id = rqst->rq_task->tk_pid;
1366 __entry->client_id = rqst->rq_task->tk_client->cl_clid;
1367 __entry->fixup = fixup;
1368 __entry->headlen = rqst->rq_rcv_buf.head[0].iov_len;
1369 __entry->pagelen = rqst->rq_rcv_buf.page_len;
1370 __entry->taillen = rqst->rq_rcv_buf.tail[0].iov_len;
1371 ),
1372
1373 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER " fixup=%lu xdr=%zu/%u/%zu",
1374 __entry->task_id, __entry->client_id, __entry->fixup,
1375 __entry->headlen, __entry->pagelen, __entry->taillen
1376 )
1377);
1378
1379TRACE_EVENT(xprtrdma_decode_seg,
1380 TP_PROTO(
1381 u32 handle,
1382 u32 length,
1383 u64 offset
1384 ),
1385
1386 TP_ARGS(handle, length, offset),
1387
1388 TP_STRUCT__entry(
1389 __field(u32, handle)
1390 __field(u32, length)
1391 __field(u64, offset)
1392 ),
1393
1394 TP_fast_assign(
1395 __entry->handle = handle;
1396 __entry->length = length;
1397 __entry->offset = offset;
1398 ),
1399
1400 TP_printk("%u@0x%016llx:0x%08x",
1401 __entry->length, (unsigned long long)__entry->offset,
1402 __entry->handle
1403 )
1404);
1405
1406TRACE_EVENT(xprtrdma_mrs_zap,
1407 TP_PROTO(
1408 const struct rpc_task *task
1409 ),
1410
1411 TP_ARGS(task),
1412
1413 TP_STRUCT__entry(
1414 __field(unsigned int, task_id)
1415 __field(unsigned int, client_id)
1416 ),
1417
1418 TP_fast_assign(
1419 __entry->task_id = task->tk_pid;
1420 __entry->client_id = task->tk_client->cl_clid;
1421 ),
1422
1423 TP_printk(SUNRPC_TRACE_TASK_SPECIFIER,
1424 __entry->task_id, __entry->client_id
1425 )
1426);
1427
1428/**
1429 ** Callback events
1430 **/
1431
1432TRACE_EVENT(xprtrdma_cb_setup,
1433 TP_PROTO(
1434 const struct rpcrdma_xprt *r_xprt,
1435 unsigned int reqs
1436 ),
1437
1438 TP_ARGS(r_xprt, reqs),
1439
1440 TP_STRUCT__entry(
1441 __field(unsigned int, reqs)
1442 __string(addr, rpcrdma_addrstr(r_xprt))
1443 __string(port, rpcrdma_portstr(r_xprt))
1444 ),
1445
1446 TP_fast_assign(
1447 __entry->reqs = reqs;
1448 __assign_str(addr, rpcrdma_addrstr(r_xprt));
1449 __assign_str(port, rpcrdma_portstr(r_xprt));
1450 ),
1451
1452 TP_printk("peer=[%s]:%s %u reqs",
1453 __get_str(addr), __get_str(port), __entry->reqs
1454 )
1455);
1456
1457DEFINE_CALLBACK_EVENT(call);
1458DEFINE_CALLBACK_EVENT(reply);
1459
1460/**
1461 ** Server-side RPC/RDMA events
1462 **/
1463
1464DECLARE_EVENT_CLASS(svcrdma_accept_class,
1465 TP_PROTO(
1466 const struct svcxprt_rdma *rdma,
1467 long status
1468 ),
1469
1470 TP_ARGS(rdma, status),
1471
1472 TP_STRUCT__entry(
1473 __field(long, status)
1474 __string(addr, rdma->sc_xprt.xpt_remotebuf)
1475 ),
1476
1477 TP_fast_assign(
1478 __entry->status = status;
1479 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
1480 ),
1481
1482 TP_printk("addr=%s status=%ld",
1483 __get_str(addr), __entry->status
1484 )
1485);
1486
1487#define DEFINE_ACCEPT_EVENT(name) \
1488 DEFINE_EVENT(svcrdma_accept_class, svcrdma_##name##_err, \
1489 TP_PROTO( \
1490 const struct svcxprt_rdma *rdma, \
1491 long status \
1492 ), \
1493 TP_ARGS(rdma, status))
1494
1495DEFINE_ACCEPT_EVENT(pd);
1496DEFINE_ACCEPT_EVENT(qp);
1497DEFINE_ACCEPT_EVENT(fabric);
1498DEFINE_ACCEPT_EVENT(initdepth);
1499DEFINE_ACCEPT_EVENT(accept);
1500
1501TRACE_DEFINE_ENUM(RDMA_MSG);
1502TRACE_DEFINE_ENUM(RDMA_NOMSG);
1503TRACE_DEFINE_ENUM(RDMA_MSGP);
1504TRACE_DEFINE_ENUM(RDMA_DONE);
1505TRACE_DEFINE_ENUM(RDMA_ERROR);
1506
1507#define show_rpcrdma_proc(x) \
1508 __print_symbolic(x, \
1509 { RDMA_MSG, "RDMA_MSG" }, \
1510 { RDMA_NOMSG, "RDMA_NOMSG" }, \
1511 { RDMA_MSGP, "RDMA_MSGP" }, \
1512 { RDMA_DONE, "RDMA_DONE" }, \
1513 { RDMA_ERROR, "RDMA_ERROR" })
1514
1515TRACE_EVENT(svcrdma_decode_rqst,
1516 TP_PROTO(
1517 const struct svc_rdma_recv_ctxt *ctxt,
1518 __be32 *p,
1519 unsigned int hdrlen
1520 ),
1521
1522 TP_ARGS(ctxt, p, hdrlen),
1523
1524 TP_STRUCT__entry(
1525 __field(u32, cq_id)
1526 __field(int, completion_id)
1527 __field(u32, xid)
1528 __field(u32, vers)
1529 __field(u32, proc)
1530 __field(u32, credits)
1531 __field(unsigned int, hdrlen)
1532 ),
1533
1534 TP_fast_assign(
1535 __entry->cq_id = ctxt->rc_cid.ci_queue_id;
1536 __entry->completion_id = ctxt->rc_cid.ci_completion_id;
1537 __entry->xid = be32_to_cpup(p++);
1538 __entry->vers = be32_to_cpup(p++);
1539 __entry->credits = be32_to_cpup(p++);
1540 __entry->proc = be32_to_cpup(p);
1541 __entry->hdrlen = hdrlen;
1542 ),
1543
1544 TP_printk("cq.id=%u cid=%d xid=0x%08x vers=%u credits=%u proc=%s hdrlen=%u",
1545 __entry->cq_id, __entry->completion_id,
1546 __entry->xid, __entry->vers, __entry->credits,
1547 show_rpcrdma_proc(__entry->proc), __entry->hdrlen)
1548);
1549
1550TRACE_EVENT(svcrdma_decode_short_err,
1551 TP_PROTO(
1552 const struct svc_rdma_recv_ctxt *ctxt,
1553 unsigned int hdrlen
1554 ),
1555
1556 TP_ARGS(ctxt, hdrlen),
1557
1558 TP_STRUCT__entry(
1559 __field(u32, cq_id)
1560 __field(int, completion_id)
1561 __field(unsigned int, hdrlen)
1562 ),
1563
1564 TP_fast_assign(
1565 __entry->cq_id = ctxt->rc_cid.ci_queue_id;
1566 __entry->completion_id = ctxt->rc_cid.ci_completion_id;
1567 __entry->hdrlen = hdrlen;
1568 ),
1569
1570 TP_printk("cq.id=%u cid=%d hdrlen=%u",
1571 __entry->cq_id, __entry->completion_id,
1572 __entry->hdrlen)
1573);
1574
1575DECLARE_EVENT_CLASS(svcrdma_badreq_event,
1576 TP_PROTO(
1577 const struct svc_rdma_recv_ctxt *ctxt,
1578 __be32 *p
1579 ),
1580
1581 TP_ARGS(ctxt, p),
1582
1583 TP_STRUCT__entry(
1584 __field(u32, cq_id)
1585 __field(int, completion_id)
1586 __field(u32, xid)
1587 __field(u32, vers)
1588 __field(u32, proc)
1589 __field(u32, credits)
1590 ),
1591
1592 TP_fast_assign(
1593 __entry->cq_id = ctxt->rc_cid.ci_queue_id;
1594 __entry->completion_id = ctxt->rc_cid.ci_completion_id;
1595 __entry->xid = be32_to_cpup(p++);
1596 __entry->vers = be32_to_cpup(p++);
1597 __entry->credits = be32_to_cpup(p++);
1598 __entry->proc = be32_to_cpup(p);
1599 ),
1600
1601 TP_printk("cq.id=%u cid=%d xid=0x%08x vers=%u credits=%u proc=%u",
1602 __entry->cq_id, __entry->completion_id,
1603 __entry->xid, __entry->vers, __entry->credits, __entry->proc)
1604);
1605
1606#define DEFINE_BADREQ_EVENT(name) \
1607 DEFINE_EVENT(svcrdma_badreq_event, \
1608 svcrdma_decode_##name##_err, \
1609 TP_PROTO( \
1610 const struct svc_rdma_recv_ctxt *ctxt, \
1611 __be32 *p \
1612 ), \
1613 TP_ARGS(ctxt, p))
1614
1615DEFINE_BADREQ_EVENT(badvers);
1616DEFINE_BADREQ_EVENT(drop);
1617DEFINE_BADREQ_EVENT(badproc);
1618DEFINE_BADREQ_EVENT(parse);
1619
1620TRACE_EVENT(svcrdma_encode_wseg,
1621 TP_PROTO(
1622 const struct svc_rdma_send_ctxt *ctxt,
1623 u32 segno,
1624 u32 handle,
1625 u32 length,
1626 u64 offset
1627 ),
1628
1629 TP_ARGS(ctxt, segno, handle, length, offset),
1630
1631 TP_STRUCT__entry(
1632 __field(u32, cq_id)
1633 __field(int, completion_id)
1634 __field(u32, segno)
1635 __field(u32, handle)
1636 __field(u32, length)
1637 __field(u64, offset)
1638 ),
1639
1640 TP_fast_assign(
1641 __entry->cq_id = ctxt->sc_cid.ci_queue_id;
1642 __entry->completion_id = ctxt->sc_cid.ci_completion_id;
1643 __entry->segno = segno;
1644 __entry->handle = handle;
1645 __entry->length = length;
1646 __entry->offset = offset;
1647 ),
1648
1649 TP_printk("cq.id=%u cid=%d segno=%u %u@0x%016llx:0x%08x",
1650 __entry->cq_id, __entry->completion_id,
1651 __entry->segno, __entry->length,
1652 (unsigned long long)__entry->offset, __entry->handle
1653 )
1654);
1655
1656TRACE_EVENT(svcrdma_decode_rseg,
1657 TP_PROTO(
1658 const struct rpc_rdma_cid *cid,
1659 const struct svc_rdma_chunk *chunk,
1660 const struct svc_rdma_segment *segment
1661 ),
1662
1663 TP_ARGS(cid, chunk, segment),
1664
1665 TP_STRUCT__entry(
1666 __field(u32, cq_id)
1667 __field(int, completion_id)
1668 __field(u32, segno)
1669 __field(u32, position)
1670 __field(u32, handle)
1671 __field(u32, length)
1672 __field(u64, offset)
1673 ),
1674
1675 TP_fast_assign(
1676 __entry->cq_id = cid->ci_queue_id;
1677 __entry->completion_id = cid->ci_completion_id;
1678 __entry->segno = chunk->ch_segcount;
1679 __entry->position = chunk->ch_position;
1680 __entry->handle = segment->rs_handle;
1681 __entry->length = segment->rs_length;
1682 __entry->offset = segment->rs_offset;
1683 ),
1684
1685 TP_printk("cq.id=%u cid=%d segno=%u position=%u %u@0x%016llx:0x%08x",
1686 __entry->cq_id, __entry->completion_id,
1687 __entry->segno, __entry->position, __entry->length,
1688 (unsigned long long)__entry->offset, __entry->handle
1689 )
1690);
1691
1692TRACE_EVENT(svcrdma_decode_wseg,
1693 TP_PROTO(
1694 const struct rpc_rdma_cid *cid,
1695 const struct svc_rdma_chunk *chunk,
1696 u32 segno
1697 ),
1698
1699 TP_ARGS(cid, chunk, segno),
1700
1701 TP_STRUCT__entry(
1702 __field(u32, cq_id)
1703 __field(int, completion_id)
1704 __field(u32, segno)
1705 __field(u32, handle)
1706 __field(u32, length)
1707 __field(u64, offset)
1708 ),
1709
1710 TP_fast_assign(
1711 const struct svc_rdma_segment *segment =
1712 &chunk->ch_segments[segno];
1713
1714 __entry->cq_id = cid->ci_queue_id;
1715 __entry->completion_id = cid->ci_completion_id;
1716 __entry->segno = segno;
1717 __entry->handle = segment->rs_handle;
1718 __entry->length = segment->rs_length;
1719 __entry->offset = segment->rs_offset;
1720 ),
1721
1722 TP_printk("cq.id=%u cid=%d segno=%u %u@0x%016llx:0x%08x",
1723 __entry->cq_id, __entry->completion_id,
1724 __entry->segno, __entry->length,
1725 (unsigned long long)__entry->offset, __entry->handle
1726 )
1727);
1728
1729DECLARE_EVENT_CLASS(svcrdma_error_event,
1730 TP_PROTO(
1731 __be32 xid
1732 ),
1733
1734 TP_ARGS(xid),
1735
1736 TP_STRUCT__entry(
1737 __field(u32, xid)
1738 ),
1739
1740 TP_fast_assign(
1741 __entry->xid = be32_to_cpu(xid);
1742 ),
1743
1744 TP_printk("xid=0x%08x",
1745 __entry->xid
1746 )
1747);
1748
1749#define DEFINE_ERROR_EVENT(name) \
1750 DEFINE_EVENT(svcrdma_error_event, svcrdma_err_##name, \
1751 TP_PROTO( \
1752 __be32 xid \
1753 ), \
1754 TP_ARGS(xid))
1755
1756DEFINE_ERROR_EVENT(vers);
1757DEFINE_ERROR_EVENT(chunk);
1758
1759/**
1760 ** Server-side RDMA API events
1761 **/
1762
1763DECLARE_EVENT_CLASS(svcrdma_dma_map_class,
1764 TP_PROTO(
1765 const struct rpc_rdma_cid *cid,
1766 u64 dma_addr,
1767 u32 length
1768 ),
1769
1770 TP_ARGS(cid, dma_addr, length),
1771
1772 TP_STRUCT__entry(
1773 __field(u32, cq_id)
1774 __field(int, completion_id)
1775 __field(u64, dma_addr)
1776 __field(u32, length)
1777 ),
1778
1779 TP_fast_assign(
1780 __entry->cq_id = cid->ci_queue_id;
1781 __entry->completion_id = cid->ci_completion_id;
1782 __entry->dma_addr = dma_addr;
1783 __entry->length = length;
1784 ),
1785
1786 TP_printk("cq.id=%u cid=%d dma_addr=%llu length=%u",
1787 __entry->cq_id, __entry->completion_id,
1788 __entry->dma_addr, __entry->length
1789 )
1790);
1791
1792#define DEFINE_SVC_DMA_EVENT(name) \
1793 DEFINE_EVENT(svcrdma_dma_map_class, svcrdma_##name, \
1794 TP_PROTO( \
1795 const struct rpc_rdma_cid *cid, \
1796 u64 dma_addr, \
1797 u32 length \
1798 ), \
1799 TP_ARGS(cid, dma_addr, length) \
1800 )
1801
1802DEFINE_SVC_DMA_EVENT(dma_map_page);
1803DEFINE_SVC_DMA_EVENT(dma_map_err);
1804DEFINE_SVC_DMA_EVENT(dma_unmap_page);
1805
1806TRACE_EVENT(svcrdma_dma_map_rw_err,
1807 TP_PROTO(
1808 const struct svcxprt_rdma *rdma,
1809 u64 offset,
1810 u32 handle,
1811 unsigned int nents,
1812 int status
1813 ),
1814
1815 TP_ARGS(rdma, offset, handle, nents, status),
1816
1817 TP_STRUCT__entry(
1818 __field(u32, cq_id)
1819 __field(u32, handle)
1820 __field(u64, offset)
1821 __field(unsigned int, nents)
1822 __field(int, status)
1823 ),
1824
1825 TP_fast_assign(
1826 __entry->cq_id = rdma->sc_sq_cq->res.id;
1827 __entry->handle = handle;
1828 __entry->offset = offset;
1829 __entry->nents = nents;
1830 __entry->status = status;
1831 ),
1832
1833 TP_printk("cq.id=%u 0x%016llx:0x%08x nents=%u status=%d",
1834 __entry->cq_id, (unsigned long long)__entry->offset,
1835 __entry->handle, __entry->nents, __entry->status
1836 )
1837);
1838
1839TRACE_EVENT(svcrdma_rwctx_empty,
1840 TP_PROTO(
1841 const struct svcxprt_rdma *rdma,
1842 unsigned int num_sges
1843 ),
1844
1845 TP_ARGS(rdma, num_sges),
1846
1847 TP_STRUCT__entry(
1848 __field(u32, cq_id)
1849 __field(unsigned int, num_sges)
1850 ),
1851
1852 TP_fast_assign(
1853 __entry->cq_id = rdma->sc_sq_cq->res.id;
1854 __entry->num_sges = num_sges;
1855 ),
1856
1857 TP_printk("cq.id=%u num_sges=%d",
1858 __entry->cq_id, __entry->num_sges
1859 )
1860);
1861
1862TRACE_EVENT(svcrdma_page_overrun_err,
1863 TP_PROTO(
1864 const struct rpc_rdma_cid *cid,
1865 unsigned int pageno
1866 ),
1867
1868 TP_ARGS(cid, pageno),
1869
1870 TP_STRUCT__entry(
1871 __field(u32, cq_id)
1872 __field(int, completion_id)
1873 __field(unsigned int, pageno)
1874 ),
1875
1876 TP_fast_assign(
1877 __entry->cq_id = cid->ci_queue_id;
1878 __entry->completion_id = cid->ci_completion_id;
1879 __entry->pageno = pageno;
1880 ),
1881
1882 TP_printk("cq.id=%u cid=%d pageno=%u",
1883 __entry->cq_id, __entry->completion_id,
1884 __entry->pageno
1885 )
1886);
1887
1888TRACE_EVENT(svcrdma_small_wrch_err,
1889 TP_PROTO(
1890 const struct rpc_rdma_cid *cid,
1891 unsigned int remaining,
1892 unsigned int seg_no,
1893 unsigned int num_segs
1894 ),
1895
1896 TP_ARGS(cid, remaining, seg_no, num_segs),
1897
1898 TP_STRUCT__entry(
1899 __field(u32, cq_id)
1900 __field(int, completion_id)
1901 __field(unsigned int, remaining)
1902 __field(unsigned int, seg_no)
1903 __field(unsigned int, num_segs)
1904 ),
1905
1906 TP_fast_assign(
1907 __entry->cq_id = cid->ci_queue_id;
1908 __entry->completion_id = cid->ci_completion_id;
1909 __entry->remaining = remaining;
1910 __entry->seg_no = seg_no;
1911 __entry->num_segs = num_segs;
1912 ),
1913
1914 TP_printk("cq.id=%u cid=%d remaining=%u seg_no=%u num_segs=%u",
1915 __entry->cq_id, __entry->completion_id,
1916 __entry->remaining, __entry->seg_no, __entry->num_segs
1917 )
1918);
1919
1920TRACE_EVENT(svcrdma_send_pullup,
1921 TP_PROTO(
1922 const struct svc_rdma_send_ctxt *ctxt,
1923 unsigned int msglen
1924 ),
1925
1926 TP_ARGS(ctxt, msglen),
1927
1928 TP_STRUCT__entry(
1929 __field(u32, cq_id)
1930 __field(int, completion_id)
1931 __field(unsigned int, hdrlen)
1932 __field(unsigned int, msglen)
1933 ),
1934
1935 TP_fast_assign(
1936 __entry->cq_id = ctxt->sc_cid.ci_queue_id;
1937 __entry->completion_id = ctxt->sc_cid.ci_completion_id;
1938 __entry->hdrlen = ctxt->sc_hdrbuf.len,
1939 __entry->msglen = msglen;
1940 ),
1941
1942 TP_printk("cq.id=%u cid=%d hdr=%u msg=%u (total %u)",
1943 __entry->cq_id, __entry->completion_id,
1944 __entry->hdrlen, __entry->msglen,
1945 __entry->hdrlen + __entry->msglen)
1946);
1947
1948TRACE_EVENT(svcrdma_send_err,
1949 TP_PROTO(
1950 const struct svc_rqst *rqst,
1951 int status
1952 ),
1953
1954 TP_ARGS(rqst, status),
1955
1956 TP_STRUCT__entry(
1957 __field(int, status)
1958 __field(u32, xid)
1959 __string(addr, rqst->rq_xprt->xpt_remotebuf)
1960 ),
1961
1962 TP_fast_assign(
1963 __entry->status = status;
1964 __entry->xid = __be32_to_cpu(rqst->rq_xid);
1965 __assign_str(addr, rqst->rq_xprt->xpt_remotebuf);
1966 ),
1967
1968 TP_printk("addr=%s xid=0x%08x status=%d", __get_str(addr),
1969 __entry->xid, __entry->status
1970 )
1971);
1972
1973TRACE_EVENT(svcrdma_post_send,
1974 TP_PROTO(
1975 const struct svc_rdma_send_ctxt *ctxt
1976 ),
1977
1978 TP_ARGS(ctxt),
1979
1980 TP_STRUCT__entry(
1981 __field(u32, cq_id)
1982 __field(int, completion_id)
1983 __field(unsigned int, num_sge)
1984 __field(u32, inv_rkey)
1985 ),
1986
1987 TP_fast_assign(
1988 const struct ib_send_wr *wr = &ctxt->sc_send_wr;
1989
1990 __entry->cq_id = ctxt->sc_cid.ci_queue_id;
1991 __entry->completion_id = ctxt->sc_cid.ci_completion_id;
1992 __entry->num_sge = wr->num_sge;
1993 __entry->inv_rkey = (wr->opcode == IB_WR_SEND_WITH_INV) ?
1994 wr->ex.invalidate_rkey : 0;
1995 ),
1996
1997 TP_printk("cq.id=%u cid=%d num_sge=%u inv_rkey=0x%08x",
1998 __entry->cq_id, __entry->completion_id,
1999 __entry->num_sge, __entry->inv_rkey
2000 )
2001);
2002
2003DEFINE_SIMPLE_CID_EVENT(svcrdma_wc_send);
2004DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_send_flush);
2005DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_send_err);
2006
2007DEFINE_SIMPLE_CID_EVENT(svcrdma_post_recv);
2008
2009DEFINE_RECEIVE_SUCCESS_EVENT(svcrdma_wc_recv);
2010DEFINE_RECEIVE_FLUSH_EVENT(svcrdma_wc_recv_flush);
2011DEFINE_RECEIVE_FLUSH_EVENT(svcrdma_wc_recv_err);
2012
2013TRACE_EVENT(svcrdma_rq_post_err,
2014 TP_PROTO(
2015 const struct svcxprt_rdma *rdma,
2016 int status
2017 ),
2018
2019 TP_ARGS(rdma, status),
2020
2021 TP_STRUCT__entry(
2022 __field(int, status)
2023 __string(addr, rdma->sc_xprt.xpt_remotebuf)
2024 ),
2025
2026 TP_fast_assign(
2027 __entry->status = status;
2028 __assign_str(addr, rdma->sc_xprt.xpt_remotebuf);
2029 ),
2030
2031 TP_printk("addr=%s status=%d",
2032 __get_str(addr), __entry->status
2033 )
2034);
2035
2036DECLARE_EVENT_CLASS(svcrdma_post_chunk_class,
2037 TP_PROTO(
2038 const struct rpc_rdma_cid *cid,
2039 int sqecount
2040 ),
2041
2042 TP_ARGS(cid, sqecount),
2043
2044 TP_STRUCT__entry(
2045 __field(u32, cq_id)
2046 __field(int, completion_id)
2047 __field(int, sqecount)
2048 ),
2049
2050 TP_fast_assign(
2051 __entry->cq_id = cid->ci_queue_id;
2052 __entry->completion_id = cid->ci_completion_id;
2053 __entry->sqecount = sqecount;
2054 ),
2055
2056 TP_printk("cq.id=%u cid=%d sqecount=%d",
2057 __entry->cq_id, __entry->completion_id,
2058 __entry->sqecount
2059 )
2060);
2061
2062#define DEFINE_POST_CHUNK_EVENT(name) \
2063 DEFINE_EVENT(svcrdma_post_chunk_class, \
2064 svcrdma_post_##name##_chunk, \
2065 TP_PROTO( \
2066 const struct rpc_rdma_cid *cid, \
2067 int sqecount \
2068 ), \
2069 TP_ARGS(cid, sqecount))
2070
2071DEFINE_POST_CHUNK_EVENT(read);
2072DEFINE_POST_CHUNK_EVENT(write);
2073DEFINE_POST_CHUNK_EVENT(reply);
2074
2075DEFINE_EVENT(svcrdma_post_chunk_class, svcrdma_cc_release,
2076 TP_PROTO(
2077 const struct rpc_rdma_cid *cid,
2078 int sqecount
2079 ),
2080 TP_ARGS(cid, sqecount)
2081);
2082
2083TRACE_EVENT(svcrdma_wc_read,
2084 TP_PROTO(
2085 const struct ib_wc *wc,
2086 const struct rpc_rdma_cid *cid,
2087 unsigned int totalbytes,
2088 const ktime_t posttime
2089 ),
2090
2091 TP_ARGS(wc, cid, totalbytes, posttime),
2092
2093 TP_STRUCT__entry(
2094 __field(u32, cq_id)
2095 __field(int, completion_id)
2096 __field(s64, read_latency)
2097 __field(unsigned int, totalbytes)
2098 ),
2099
2100 TP_fast_assign(
2101 __entry->cq_id = cid->ci_queue_id;
2102 __entry->completion_id = cid->ci_completion_id;
2103 __entry->totalbytes = totalbytes;
2104 __entry->read_latency = ktime_us_delta(ktime_get(), posttime);
2105 ),
2106
2107 TP_printk("cq.id=%u cid=%d totalbytes=%u latency-us=%lld",
2108 __entry->cq_id, __entry->completion_id,
2109 __entry->totalbytes, __entry->read_latency
2110 )
2111);
2112
2113DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_read_flush);
2114DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_read_err);
2115DEFINE_SIMPLE_CID_EVENT(svcrdma_read_finished);
2116
2117DEFINE_SIMPLE_CID_EVENT(svcrdma_wc_write);
2118DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_write_flush);
2119DEFINE_SEND_FLUSH_EVENT(svcrdma_wc_write_err);
2120
2121TRACE_EVENT(svcrdma_qp_error,
2122 TP_PROTO(
2123 const struct ib_event *event,
2124 const struct sockaddr *sap
2125 ),
2126
2127 TP_ARGS(event, sap),
2128
2129 TP_STRUCT__entry(
2130 __field(unsigned int, event)
2131 __string(device, event->device->name)
2132 __array(__u8, addr, INET6_ADDRSTRLEN + 10)
2133 ),
2134
2135 TP_fast_assign(
2136 __entry->event = event->event;
2137 __assign_str(device, event->device->name);
2138 snprintf(__entry->addr, sizeof(__entry->addr) - 1,
2139 "%pISpc", sap);
2140 ),
2141
2142 TP_printk("addr=%s dev=%s event=%s (%u)",
2143 __entry->addr, __get_str(device),
2144 rdma_show_ib_event(__entry->event), __entry->event
2145 )
2146);
2147
2148DECLARE_EVENT_CLASS(svcrdma_sendqueue_class,
2149 TP_PROTO(
2150 const struct svcxprt_rdma *rdma,
2151 const struct rpc_rdma_cid *cid
2152 ),
2153
2154 TP_ARGS(rdma, cid),
2155
2156 TP_STRUCT__entry(
2157 __field(u32, cq_id)
2158 __field(int, completion_id)
2159 __field(int, avail)
2160 __field(int, depth)
2161 ),
2162
2163 TP_fast_assign(
2164 __entry->cq_id = cid->ci_queue_id;
2165 __entry->completion_id = cid->ci_completion_id;
2166 __entry->avail = atomic_read(&rdma->sc_sq_avail);
2167 __entry->depth = rdma->sc_sq_depth;
2168 ),
2169
2170 TP_printk("cq.id=%u cid=%d sc_sq_avail=%d/%d",
2171 __entry->cq_id, __entry->completion_id,
2172 __entry->avail, __entry->depth
2173 )
2174);
2175
2176#define DEFINE_SQ_EVENT(name) \
2177 DEFINE_EVENT(svcrdma_sendqueue_class, name, \
2178 TP_PROTO( \
2179 const struct svcxprt_rdma *rdma, \
2180 const struct rpc_rdma_cid *cid \
2181 ), \
2182 TP_ARGS(rdma, cid) \
2183 )
2184
2185DEFINE_SQ_EVENT(svcrdma_sq_full);
2186DEFINE_SQ_EVENT(svcrdma_sq_retry);
2187
2188TRACE_EVENT(svcrdma_sq_post_err,
2189 TP_PROTO(
2190 const struct svcxprt_rdma *rdma,
2191 const struct rpc_rdma_cid *cid,
2192 int status
2193 ),
2194
2195 TP_ARGS(rdma, cid, status),
2196
2197 TP_STRUCT__entry(
2198 __field(u32, cq_id)
2199 __field(int, completion_id)
2200 __field(int, avail)
2201 __field(int, depth)
2202 __field(int, status)
2203 ),
2204
2205 TP_fast_assign(
2206 __entry->cq_id = cid->ci_queue_id;
2207 __entry->completion_id = cid->ci_completion_id;
2208 __entry->avail = atomic_read(&rdma->sc_sq_avail);
2209 __entry->depth = rdma->sc_sq_depth;
2210 __entry->status = status;
2211 ),
2212
2213 TP_printk("cq.id=%u cid=%d sc_sq_avail=%d/%d status=%d",
2214 __entry->cq_id, __entry->completion_id,
2215 __entry->avail, __entry->depth, __entry->status
2216 )
2217);
2218
2219#endif /* _TRACE_RPCRDMA_H */
2220
2221#include <trace/define_trace.h>