Skip to content

Commit c30f259

Browse files
chuckleveramschuma-ntap
authored andcommitted
rpcrdma: Capture bytes received in Receive completion tracepoints
Make it easier to spot messages of an unusual size. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Acked-by: Tom Talpey <tom@talpey.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
1 parent 2324fbe commit c30f259

File tree

1 file changed

+48
-2
lines changed

1 file changed

+48
-2
lines changed

include/trace/events/rpcrdma.h

+48-2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,51 @@ DECLARE_EVENT_CLASS(rpcrdma_completion_class,
6060
), \
6161
TP_ARGS(wc, cid))
6262

63+
DECLARE_EVENT_CLASS(rpcrdma_receive_completion_class,
64+
TP_PROTO(
65+
const struct ib_wc *wc,
66+
const struct rpc_rdma_cid *cid
67+
),
68+
69+
TP_ARGS(wc, cid),
70+
71+
TP_STRUCT__entry(
72+
__field(u32, cq_id)
73+
__field(int, completion_id)
74+
__field(u32, received)
75+
__field(unsigned long, status)
76+
__field(unsigned int, vendor_err)
77+
),
78+
79+
TP_fast_assign(
80+
__entry->cq_id = cid->ci_queue_id;
81+
__entry->completion_id = cid->ci_completion_id;
82+
__entry->status = wc->status;
83+
if (wc->status) {
84+
__entry->received = 0;
85+
__entry->vendor_err = wc->vendor_err;
86+
} else {
87+
__entry->received = wc->byte_len;
88+
__entry->vendor_err = 0;
89+
}
90+
),
91+
92+
TP_printk("cq.id=%u cid=%d status=%s (%lu/0x%x) received=%u",
93+
__entry->cq_id, __entry->completion_id,
94+
rdma_show_wc_status(__entry->status),
95+
__entry->status, __entry->vendor_err,
96+
__entry->received
97+
)
98+
);
99+
100+
#define DEFINE_RECEIVE_COMPLETION_EVENT(name) \
101+
DEFINE_EVENT(rpcrdma_receive_completion_class, name, \
102+
TP_PROTO( \
103+
const struct ib_wc *wc, \
104+
const struct rpc_rdma_cid *cid \
105+
), \
106+
TP_ARGS(wc, cid))
107+
63108
DECLARE_EVENT_CLASS(xprtrdma_reply_class,
64109
TP_PROTO(
65110
const struct rpcrdma_rep *rep
@@ -838,7 +883,8 @@ TRACE_EVENT(xprtrdma_post_linv_err,
838883
** Completion events
839884
**/
840885

841-
DEFINE_COMPLETION_EVENT(xprtrdma_wc_receive);
886+
DEFINE_RECEIVE_COMPLETION_EVENT(xprtrdma_wc_receive);
887+
842888
DEFINE_COMPLETION_EVENT(xprtrdma_wc_send);
843889
DEFINE_COMPLETION_EVENT(xprtrdma_wc_fastreg);
844890
DEFINE_COMPLETION_EVENT(xprtrdma_wc_li);
@@ -1790,7 +1836,7 @@ TRACE_EVENT(svcrdma_post_recv,
17901836
)
17911837
);
17921838

1793-
DEFINE_COMPLETION_EVENT(svcrdma_wc_receive);
1839+
DEFINE_RECEIVE_COMPLETION_EVENT(svcrdma_wc_receive);
17941840

17951841
TRACE_EVENT(svcrdma_rq_post_err,
17961842
TP_PROTO(

0 commit comments

Comments
 (0)