mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
4826260868
This introduces tracepoint for smc fallback to TCP, so that we can track which connection and why it fallbacks, and map the clcsocks' pointer with /proc/net/tcp to find more details about TCP connections. Compared with kprobe or other dynamic tracing, tracepoints are stable and easy to use. Signed-off-by: Tony Lu <tonylu@linux.alibaba.com> Reviewed-by: Wen Gu <guwen@linux.alibaba.com> Signed-off-by: David S. Miller <davem@davemloft.net>
8 lines
315 B
Makefile
8 lines
315 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
ccflags-y += -I$(src)
|
|
obj-$(CONFIG_SMC) += smc.o
|
|
obj-$(CONFIG_SMC_DIAG) += smc_diag.o
|
|
smc-y := af_smc.o smc_pnet.o smc_ib.o smc_clc.o smc_core.o smc_wr.o smc_llc.o
|
|
smc-y += smc_cdc.o smc_tx.o smc_rx.o smc_close.o smc_ism.o smc_netlink.o smc_stats.o
|
|
smc-y += smc_tracepoint.o
|