mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Cross-merge networking fixes after downstream PR. No conflicts. Adjacent changes: drivers/net/ethernet/intel/igc/igc_main.c06b412589e("igc: Add lock to safeguard global Qbv variables")d3750076d4("igc: Add TransmissionOverrun counter") drivers/net/ethernet/microsoft/mana/mana_en.ca7dfeda6fd("net: mana: Fix MANA VF unload when hardware is unresponsive")a9ca9f9cef("page_pool: split types and declarations from page_pool.h")92272ec410("eth: add missing xdp.h includes in drivers") net/mptcp/protocol.h511b90e392("mptcp: fix disconnect vs accept race")b8dc6d6ce9("mptcp: fix rcv buffer auto-tuning") tools/testing/selftests/net/mptcp/mptcp_join.shc8c101ae39("selftests: mptcp: join: fix 'implicit EP' test")03668c65d1("selftests: mptcp: join: rework detailed report") Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
@@ -381,6 +381,7 @@ TRACE_EVENT(tcp_cong_state_set,
|
||||
__field(const void *, skaddr)
|
||||
__field(__u16, sport)
|
||||
__field(__u16, dport)
|
||||
__field(__u16, family)
|
||||
__array(__u8, saddr, 4)
|
||||
__array(__u8, daddr, 4)
|
||||
__array(__u8, saddr_v6, 16)
|
||||
@@ -396,6 +397,7 @@ TRACE_EVENT(tcp_cong_state_set,
|
||||
|
||||
__entry->sport = ntohs(inet->inet_sport);
|
||||
__entry->dport = ntohs(inet->inet_dport);
|
||||
__entry->family = sk->sk_family;
|
||||
|
||||
p32 = (__be32 *) __entry->saddr;
|
||||
*p32 = inet->inet_saddr;
|
||||
@@ -409,7 +411,8 @@ TRACE_EVENT(tcp_cong_state_set,
|
||||
__entry->cong_state = ca_state;
|
||||
),
|
||||
|
||||
TP_printk("sport=%hu dport=%hu saddr=%pI4 daddr=%pI4 saddrv6=%pI6c daddrv6=%pI6c cong_state=%u",
|
||||
TP_printk("family=%s sport=%hu dport=%hu saddr=%pI4 daddr=%pI4 saddrv6=%pI6c daddrv6=%pI6c cong_state=%u",
|
||||
show_family_name(__entry->family),
|
||||
__entry->sport, __entry->dport,
|
||||
__entry->saddr, __entry->daddr,
|
||||
__entry->saddr_v6, __entry->daddr_v6,
|
||||
|
||||
Reference in New Issue
Block a user