mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 05:11:48 +00:00
81ba39a82e
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>
14 lines
230 B
Makefile
14 lines
230 B
Makefile
#
|
|
# rdmavt driver
|
|
#
|
|
#
|
|
#
|
|
# Called from the kernel module build system.
|
|
#
|
|
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 \
|
|
trace.o
|
|
|
|
CFLAGS_trace.o = -I$(src)
|