Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tcp: tcp_vegas: use tcp_vegas_cwnd_event_tx_start()

While net/ipv4/tcp_yeah.c is correctly setting .cwnd_event_tx_start
to tcp_vegas_cwnd_event_tx_start(), I forgot to do the same in tcp_vegas.c

Fixes: d1e59a469737 ("tcp: add cwnd_event_tx_start to tcp_congestion_ops")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Kuniyuki Iwashima <kuniyu@google.com>
Link: https://patch.msgid.link/20260325212440.4146579-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Eric Dumazet and committed by
Jakub Kicinski
6a539eee fe3e5425

+1
+1
net/ipv4/tcp_vegas.c
··· 319 319 .pkts_acked = tcp_vegas_pkts_acked, 320 320 .set_state = tcp_vegas_state, 321 321 .cwnd_event = tcp_vegas_cwnd_event, 322 + .cwnd_event_tx_start = tcp_vegas_cwnd_event_tx_start, 322 323 .get_info = tcp_vegas_get_info, 323 324 324 325 .owner = THIS_MODULE,