1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * Copyright(c) 2016 Intel Corporation. 3*4882a593Smuzhiyun * 4*4882a593Smuzhiyun * This file is provided under a dual BSD/GPLv2 license. When using or 5*4882a593Smuzhiyun * redistributing this file, you may do so under either license. 6*4882a593Smuzhiyun * 7*4882a593Smuzhiyun * GPL LICENSE SUMMARY 8*4882a593Smuzhiyun * 9*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or modify 10*4882a593Smuzhiyun * it under the terms of version 2 of the GNU General Public License as 11*4882a593Smuzhiyun * published by the Free Software Foundation. 12*4882a593Smuzhiyun * 13*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful, but 14*4882a593Smuzhiyun * WITHOUT ANY WARRANTY; without even the implied warranty of 15*4882a593Smuzhiyun * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16*4882a593Smuzhiyun * General Public License for more details. 17*4882a593Smuzhiyun * 18*4882a593Smuzhiyun * BSD LICENSE 19*4882a593Smuzhiyun * 20*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or without 21*4882a593Smuzhiyun * modification, are permitted provided that the following conditions 22*4882a593Smuzhiyun * are met: 23*4882a593Smuzhiyun * 24*4882a593Smuzhiyun * - Redistributions of source code must retain the above copyright 25*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer. 26*4882a593Smuzhiyun * - Redistributions in binary form must reproduce the above copyright 27*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer in 28*4882a593Smuzhiyun * the documentation and/or other materials provided with the 29*4882a593Smuzhiyun * distribution. 30*4882a593Smuzhiyun * - Neither the name of Intel Corporation nor the names of its 31*4882a593Smuzhiyun * contributors may be used to endorse or promote products derived 32*4882a593Smuzhiyun * from this software without specific prior written permission. 33*4882a593Smuzhiyun * 34*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 35*4882a593Smuzhiyun * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 36*4882a593Smuzhiyun * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 37*4882a593Smuzhiyun * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 38*4882a593Smuzhiyun * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 39*4882a593Smuzhiyun * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 40*4882a593Smuzhiyun * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 41*4882a593Smuzhiyun * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 42*4882a593Smuzhiyun * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 43*4882a593Smuzhiyun * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 44*4882a593Smuzhiyun * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 45*4882a593Smuzhiyun * 46*4882a593Smuzhiyun */ 47*4882a593Smuzhiyun #if !defined(__RVT_TRACE_QP_H) || defined(TRACE_HEADER_MULTI_READ) 48*4882a593Smuzhiyun #define __RVT_TRACE_QP_H 49*4882a593Smuzhiyun 50*4882a593Smuzhiyun #include <linux/tracepoint.h> 51*4882a593Smuzhiyun #include <linux/trace_seq.h> 52*4882a593Smuzhiyun 53*4882a593Smuzhiyun #include <rdma/ib_verbs.h> 54*4882a593Smuzhiyun #include <rdma/rdmavt_qp.h> 55*4882a593Smuzhiyun 56*4882a593Smuzhiyun #undef TRACE_SYSTEM 57*4882a593Smuzhiyun #define TRACE_SYSTEM rvt_qp 58*4882a593Smuzhiyun 59*4882a593Smuzhiyun DECLARE_EVENT_CLASS(rvt_qphash_template, 60*4882a593Smuzhiyun TP_PROTO(struct rvt_qp *qp, u32 bucket), 61*4882a593Smuzhiyun TP_ARGS(qp, bucket), 62*4882a593Smuzhiyun TP_STRUCT__entry( 63*4882a593Smuzhiyun RDI_DEV_ENTRY(ib_to_rvt(qp->ibqp.device)) 64*4882a593Smuzhiyun __field(u32, qpn) 65*4882a593Smuzhiyun __field(u32, bucket) 66*4882a593Smuzhiyun ), 67*4882a593Smuzhiyun TP_fast_assign( 68*4882a593Smuzhiyun RDI_DEV_ASSIGN(ib_to_rvt(qp->ibqp.device)) 69*4882a593Smuzhiyun __entry->qpn = qp->ibqp.qp_num; 70*4882a593Smuzhiyun __entry->bucket = bucket; 71*4882a593Smuzhiyun ), 72*4882a593Smuzhiyun TP_printk( 73*4882a593Smuzhiyun "[%s] qpn 0x%x bucket %u", 74*4882a593Smuzhiyun __get_str(dev), 75*4882a593Smuzhiyun __entry->qpn, 76*4882a593Smuzhiyun __entry->bucket 77*4882a593Smuzhiyun ) 78*4882a593Smuzhiyun ); 79*4882a593Smuzhiyun 80*4882a593Smuzhiyun DEFINE_EVENT(rvt_qphash_template, rvt_qpinsert, 81*4882a593Smuzhiyun TP_PROTO(struct rvt_qp *qp, u32 bucket), 82*4882a593Smuzhiyun TP_ARGS(qp, bucket)); 83*4882a593Smuzhiyun 84*4882a593Smuzhiyun DEFINE_EVENT(rvt_qphash_template, rvt_qpremove, 85*4882a593Smuzhiyun TP_PROTO(struct rvt_qp *qp, u32 bucket), 86*4882a593Smuzhiyun TP_ARGS(qp, bucket)); 87*4882a593Smuzhiyun 88*4882a593Smuzhiyun DECLARE_EVENT_CLASS( 89*4882a593Smuzhiyun rvt_rnrnak_template, 90*4882a593Smuzhiyun TP_PROTO(struct rvt_qp *qp, u32 to), 91*4882a593Smuzhiyun TP_ARGS(qp, to), 92*4882a593Smuzhiyun TP_STRUCT__entry( 93*4882a593Smuzhiyun RDI_DEV_ENTRY(ib_to_rvt(qp->ibqp.device)) 94*4882a593Smuzhiyun __field(u32, qpn) 95*4882a593Smuzhiyun __field(void *, hrtimer) 96*4882a593Smuzhiyun __field(u32, s_flags) 97*4882a593Smuzhiyun __field(u32, to) 98*4882a593Smuzhiyun ), 99*4882a593Smuzhiyun TP_fast_assign( 100*4882a593Smuzhiyun RDI_DEV_ASSIGN(ib_to_rvt(qp->ibqp.device)) 101*4882a593Smuzhiyun __entry->qpn = qp->ibqp.qp_num; 102*4882a593Smuzhiyun __entry->hrtimer = &qp->s_rnr_timer; 103*4882a593Smuzhiyun __entry->s_flags = qp->s_flags; 104*4882a593Smuzhiyun __entry->to = to; 105*4882a593Smuzhiyun ), 106*4882a593Smuzhiyun TP_printk( 107*4882a593Smuzhiyun "[%s] qpn 0x%x hrtimer 0x%p s_flags 0x%x timeout %u us", 108*4882a593Smuzhiyun __get_str(dev), 109*4882a593Smuzhiyun __entry->qpn, 110*4882a593Smuzhiyun __entry->hrtimer, 111*4882a593Smuzhiyun __entry->s_flags, 112*4882a593Smuzhiyun __entry->to 113*4882a593Smuzhiyun ) 114*4882a593Smuzhiyun ); 115*4882a593Smuzhiyun 116*4882a593Smuzhiyun DEFINE_EVENT( 117*4882a593Smuzhiyun rvt_rnrnak_template, rvt_rnrnak_add, 118*4882a593Smuzhiyun TP_PROTO(struct rvt_qp *qp, u32 to), 119*4882a593Smuzhiyun TP_ARGS(qp, to)); 120*4882a593Smuzhiyun 121*4882a593Smuzhiyun DEFINE_EVENT( 122*4882a593Smuzhiyun rvt_rnrnak_template, rvt_rnrnak_timeout, 123*4882a593Smuzhiyun TP_PROTO(struct rvt_qp *qp, u32 to), 124*4882a593Smuzhiyun TP_ARGS(qp, to)); 125*4882a593Smuzhiyun 126*4882a593Smuzhiyun DEFINE_EVENT( 127*4882a593Smuzhiyun rvt_rnrnak_template, rvt_rnrnak_stop, 128*4882a593Smuzhiyun TP_PROTO(struct rvt_qp *qp, u32 to), 129*4882a593Smuzhiyun TP_ARGS(qp, to)); 130*4882a593Smuzhiyun 131*4882a593Smuzhiyun #endif /* __RVT_TRACE_QP_H */ 132*4882a593Smuzhiyun 133*4882a593Smuzhiyun #undef TRACE_INCLUDE_PATH 134*4882a593Smuzhiyun #undef TRACE_INCLUDE_FILE 135*4882a593Smuzhiyun #define TRACE_INCLUDE_PATH . 136*4882a593Smuzhiyun #define TRACE_INCLUDE_FILE trace_qp 137*4882a593Smuzhiyun #include <trace/define_trace.h> 138*4882a593Smuzhiyun 139