-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mptcp: add tracepoint in mptcp_subflow_get_send
This patch added a tracepoint in the packet scheduler function mptcp_subflow_get_send(). Suggested-by: Paolo Abeni <pabeni@redhat.com> Acked-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Geliang Tang <geliangtang@gmail.com>
- Loading branch information
1 parent
2da1c29
commit e4421bb
Showing
3 changed files
with
58 additions
and
4 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
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,53 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM mptcp | ||
|
||
#if !defined(_TRACE_MPTCP_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_MPTCP_H | ||
|
||
#include <linux/tracepoint.h> | ||
|
||
TRACE_EVENT(mptcp_subflow_get_send, | ||
|
||
TP_PROTO(struct mptcp_subflow_context *subflow), | ||
|
||
TP_ARGS(subflow), | ||
|
||
TP_STRUCT__entry( | ||
__field(bool, active) | ||
__field(bool, free) | ||
__field(u32, snd_wnd) | ||
__field(u32, pace) | ||
__field(u8, backup) | ||
__field(u64, ratio) | ||
), | ||
|
||
TP_fast_assign( | ||
bool sk = sk_fullsock(subflow->tcp_sock); | ||
|
||
__entry->active = mptcp_subflow_active(subflow); | ||
__entry->backup = subflow->backup; | ||
if (sk) { | ||
struct sock *ssk = mptcp_subflow_tcp_sock(subflow); | ||
|
||
__entry->free = sk_stream_memory_free(subflow->tcp_sock); | ||
if (ssk) { | ||
__entry->snd_wnd = tcp_sk(ssk)->snd_wnd; | ||
__entry->pace = ssk->sk_pacing_rate; | ||
if (__entry->pace) | ||
__entry->ratio = div_u64((u64)ssk->sk_wmem_queued << 32, | ||
__entry->pace); | ||
} | ||
} | ||
), | ||
|
||
TP_printk("active=%d free=%d snd_wnd=%u pace=%u backup=%u ratio=%llu", | ||
__entry->active, __entry->free, | ||
__entry->snd_wnd, __entry->pace, | ||
__entry->backup, __entry->ratio) | ||
); | ||
|
||
#endif /* _TRACE_MPTCP_H */ | ||
|
||
/* This part must be outside protection */ | ||
#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