tcp: update sacked after tracepoint in __tcp_retransmit_skb
authorPhilo Lu <lulie@linux.alibaba.com>
Sun, 21 Apr 2024 04:20:09 +0000 (12:20 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 25 Apr 2024 07:52:12 +0000 (08:52 +0100)
commit2bf90a57f0e682872c5cfb66ffa45e432bb9c7ae
tree3e523116c5e7de8d0a426fa022f7a4c13966e453
parent14b5fb2145caeb909a1cd57d9cd5e0c3cd005642
tcp: update sacked after tracepoint in __tcp_retransmit_skb

Marking TCP_SKB_CB(skb)->sacked with TCPCB_EVER_RETRANS after the
traceopint (trace_tcp_retransmit_skb), then we can get the
retransmission efficiency by counting skbs w/ and w/o TCPCB_EVER_RETRANS
mark in this tracepoint.

We have discussed to achieve this with BPF_SOCK_OPS in [0], and using
tracepoint is thought to be a better solution.

[0]
https://lore.kernel.org/all/20240417124622.35333-1-lulie@linux.alibaba.com/

Signed-off-by: Philo Lu <lulie@linux.alibaba.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_output.c