tcp: avoid retransmit head with no data 57/37757/3
authorFlorin Coras <fcoras@cisco.com>
Tue, 6 Dec 2022 16:39:15 +0000 (08:39 -0800)
committerDave Barach <vpp@barachs.net>
Wed, 7 Dec 2022 21:29:33 +0000 (21:29 +0000)
Type: fix

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Iefabc7b9dd1109fd6dcf65e5d9794173421b7369

src/vnet/tcp/tcp_output.c

index f503500..95480af 100644 (file)
@@ -1749,7 +1749,7 @@ tcp_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
       && tc->rxt_head != tc->snd_una
       && tcp_retransmit_should_retry_head (tc, sb))
     {
-      max_bytes = clib_min (tc->snd_mss, tc->snd_congestion - tc->snd_una);
+      max_bytes = clib_min (tc->snd_mss, tc->snd_nxt - tc->snd_una);
       n_written = tcp_prepare_retransmit_segment (wrk, tc, 0, max_bytes, &b);
       if (!n_written)
        {