tcp: avoid fr segments less than mss if possible 98/40598/5
authorFlorin Coras <fcoras@cisco.com>
Fri, 22 Mar 2024 23:12:53 +0000 (16:12 -0700)
committerDave Barach <vpp@barachs.net>
Tue, 26 Mar 2024 17:24:07 +0000 (17:24 +0000)
Type: improvement

Change-Id: I958e059384db3c13a29f64be96877f57617bbae2
Signed-off-by: Florin Coras <fcoras@cisco.com>
src/vnet/tcp/tcp_output.c

index e232ed4..78148cd 100644 (file)
@@ -1810,7 +1810,11 @@ tcp_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
          break;
        }
 
-      max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
+      max_bytes = hole->end - sb->high_rxt;
+      /* Avoid retransmitting segment less than mss if possible */
+      if (snd_space < tc->snd_mss && max_bytes > snd_space)
+       break;
+      max_bytes = clib_min (max_bytes, snd_space);
       max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
       if (max_bytes == 0)
        break;