mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-07 14:32:23 +00:00
c16762b7bf
Add event tracing mechanism for following routines: - send_io_resp_imm() How to use: 1. Load the rtrs_server module 2. cd /sys/kernel/debug/tracing 3. If all the events need to be enabled: echo 1 > events/rtrs_srv/enable 4. OR only speific routine/event needs to be enabled e.g. echo 1 > events/rtrs_srv/send_io_resp_imm/enable 5. cat trace 6. Run some I/O workload which can trigger send_io_resp_imm() Link: https://lore.kernel.org/r/20220818105240.110234-3-haris.iqbal@ionos.com Signed-off-by: Santosh Pradhan <santosh.pradhan@ionos.com> Signed-off-by: Jack Wang <jinpu.wang@ionos.com> Signed-off-by: Md Haris Iqbal <haris.iqbal@ionos.com> Signed-off-by: Leon Romanovsky <leon@kernel.org>
22 lines
496 B
Makefile
22 lines
496 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
CFLAGS_rtrs-clt-trace.o = -I$(src)
|
|
|
|
rtrs-client-y := rtrs-clt.o \
|
|
rtrs-clt-stats.o \
|
|
rtrs-clt-sysfs.o \
|
|
rtrs-clt-trace.o
|
|
|
|
CFLAGS_rtrs-srv-trace.o = -I$(src)
|
|
|
|
rtrs-server-y := rtrs-srv.o \
|
|
rtrs-srv-stats.o \
|
|
rtrs-srv-sysfs.o \
|
|
rtrs-srv-trace.o
|
|
|
|
rtrs-core-y := rtrs.o
|
|
|
|
obj-$(CONFIG_INFINIBAND_RTRS) += rtrs-core.o
|
|
obj-$(CONFIG_INFINIBAND_RTRS_CLIENT) += rtrs-client.o
|
|
obj-$(CONFIG_INFINIBAND_RTRS_SERVER) += rtrs-server.o
|