diff options
author | Dennis Dalessandro <dennis.dalessandro@intel.com> | 2016-01-22 22:00:28 +0100 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-03-11 02:37:24 +0100 |
commit | 81ba39a82e8a9ed4eba3e967a09e60a9d00d8de4 (patch) | |
tree | 395a492452e33638294344a00c207d8eacd734ef /drivers/infiniband/sw/rdmavt/Makefile | |
parent | IB/rdmavt: Add post send to rdmavt (diff) | |
download | linux-81ba39a82e8a9ed4eba3e967a09e60a9d00d8de4.tar.xz linux-81ba39a82e8a9ed4eba3e967a09e60a9d00d8de4.zip |
IB/rdmavt: Add support for tracing events
This patch adds support of tracing events using the kernels built-in event
tracing infrastructure. This can be extended to provide a wide range of
trace and debug capabilities which have a negligible impact on performance
when enabled. These should be preferred over the use of the rvt_pr*
functions.
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rdmavt/Makefile')
-rw-r--r-- | drivers/infiniband/sw/rdmavt/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rdmavt/Makefile b/drivers/infiniband/sw/rdmavt/Makefile index 00f018823e69..ccaa7992ac97 100644 --- a/drivers/infiniband/sw/rdmavt/Makefile +++ b/drivers/infiniband/sw/rdmavt/Makefile @@ -7,4 +7,7 @@ # obj-$(CONFIG_INFINIBAND_RDMAVT) += rdmavt.o -rdmavt-y := vt.o ah.o cq.o dma.o mad.o mcast.o mmap.o mr.o pd.o qp.o srq.o +rdmavt-y := vt.o ah.o cq.o dma.o mad.o mcast.o mmap.o mr.o pd.o qp.o srq.o \ + trace.o + +CFLAGS_trace.o = -I$(src) |