-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tony Lu says: ==================== Tracepoints for SMC This patch set introduces tracepoints for SMC, including the tracepoints basic code. The tracepoitns would help us to track SMC's behaviors by automatic tools, or other BPF tools, and zero overhead if not enabled. Compared with kprobe and other dymatic tools, the tracepoints are considered as stable API, and less overhead for tracing with easy-to-use API. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Showing
7 changed files
with
142 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
|
||
#define CREATE_TRACE_POINTS | ||
#include "smc_tracepoint.h" | ||
|
||
EXPORT_TRACEPOINT_SYMBOL(smc_switch_to_fallback); | ||
EXPORT_TRACEPOINT_SYMBOL(smc_tx_sendmsg); | ||
EXPORT_TRACEPOINT_SYMBOL(smc_rx_recvmsg); | ||
EXPORT_TRACEPOINT_SYMBOL(smcr_link_down); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
|
||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM smc | ||
|
||
#if !defined(_TRACE_SMC_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_SMC_H | ||
|
||
#include <linux/ipv6.h> | ||
#include <linux/tcp.h> | ||
#include <linux/tracepoint.h> | ||
#include <net/ipv6.h> | ||
#include "smc.h" | ||
#include "smc_core.h" | ||
|
||
TRACE_EVENT(smc_switch_to_fallback, | ||
|
||
TP_PROTO(const struct smc_sock *smc, int fallback_rsn), | ||
|
||
TP_ARGS(smc, fallback_rsn), | ||
|
||
TP_STRUCT__entry( | ||
__field(const void *, sk) | ||
__field(const void *, clcsk) | ||
__field(int, fallback_rsn) | ||
), | ||
|
||
TP_fast_assign( | ||
const struct sock *sk = &smc->sk; | ||
const struct sock *clcsk = smc->clcsock->sk; | ||
|
||
__entry->sk = sk; | ||
__entry->clcsk = clcsk; | ||
__entry->fallback_rsn = fallback_rsn; | ||
), | ||
|
||
TP_printk("sk=%p clcsk=%p fallback_rsn=%d", | ||
__entry->sk, __entry->clcsk, __entry->fallback_rsn) | ||
); | ||
|
||
DECLARE_EVENT_CLASS(smc_msg_event, | ||
|
||
TP_PROTO(const struct smc_sock *smc, size_t len), | ||
|
||
TP_ARGS(smc, len), | ||
|
||
TP_STRUCT__entry( | ||
__field(const void *, smc) | ||
__field(size_t, len) | ||
__string(name, smc->conn.lnk->ibname) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->smc = smc; | ||
__entry->len = len; | ||
__assign_str(name, smc->conn.lnk->ibname); | ||
), | ||
|
||
TP_printk("smc=%p len=%zu dev=%s", | ||
__entry->smc, __entry->len, | ||
__get_str(name)) | ||
); | ||
|
||
DEFINE_EVENT(smc_msg_event, smc_tx_sendmsg, | ||
|
||
TP_PROTO(const struct smc_sock *smc, size_t len), | ||
|
||
TP_ARGS(smc, len) | ||
); | ||
|
||
DEFINE_EVENT(smc_msg_event, smc_rx_recvmsg, | ||
|
||
TP_PROTO(const struct smc_sock *smc, size_t len), | ||
|
||
TP_ARGS(smc, len) | ||
); | ||
|
||
TRACE_EVENT(smcr_link_down, | ||
|
||
TP_PROTO(const struct smc_link *lnk, void *location), | ||
|
||
TP_ARGS(lnk, location), | ||
|
||
TP_STRUCT__entry( | ||
__field(const void *, lnk) | ||
__field(const void *, lgr) | ||
__field(int, state) | ||
__string(name, lnk->ibname) | ||
__field(void *, location) | ||
), | ||
|
||
TP_fast_assign( | ||
const struct smc_link_group *lgr = lnk->lgr; | ||
|
||
__entry->lnk = lnk; | ||
__entry->lgr = lgr; | ||
__entry->state = lnk->state; | ||
__assign_str(name, lnk->ibname); | ||
__entry->location = location; | ||
), | ||
|
||
TP_printk("lnk=%p lgr=%p state=%d dev=%s location=%p", | ||
__entry->lnk, __entry->lgr, | ||
__entry->state, __get_str(name), | ||
__entry->location) | ||
); | ||
|
||
#endif /* _TRACE_SMC_H */ | ||
|
||
#undef TRACE_INCLUDE_PATH | ||
#define TRACE_INCLUDE_PATH . | ||
|
||
#undef TRACE_INCLUDE_FILE | ||
#define TRACE_INCLUDE_FILE smc_tracepoint | ||
|
||
#include <trace/define_trace.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters