tcp: fix typo in show tcp config CLI command 10/41310/1
authorAritra Basu <[email protected]>
Mon, 29 Jul 2024 17:57:25 +0000 (10:57 -0700)
committerAritra Basu <[email protected]>
Mon, 29 Jul 2024 17:59:12 +0000 (10:59 -0700)
Type: fix

Change-Id: I844539af3a283c8ec12498dbfd4857b8b533d7c1
Signed-off-by: Aritra Basu <[email protected]>
src/vnet/tcp/tcp_cli.c

index bb7f3ef..55bc576 100644 (file)
@@ -852,8 +852,8 @@ format_tcp_cfg (u8 *s, va_list *args)
   s = format (s, "default mtu: %u\n", tm_cfg.default_mtu);
   s = format (s, "initial cwnd multiplier: %u\n",
              tm_cfg.initial_cwnd_multiplier);
-  s =
-    format (s, "tx pacing: %s\n", tm_cfg.min_rx_fifo ? "enabled" : "disabled");
+  s = format (s, "tx pacing: %s\n",
+             tm_cfg.enable_tx_pacing ? "enabled" : "disabled");
   s = format (s, "tso: %s\n", tm_cfg.allow_tso ? "allowed" : "disallowed");
   s = format (s, "checksum offload: %s\n",
              tm_cfg.csum_offload ? "enabled" : "disabled");