From 9404a077a044264bae9c71fafc57bf5a894758f3 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Tue, 24 Nov 2020 17:29:17 -0800 Subject: tcp: enable lc if any other debug option enabled Also fix debug build after snd_una_nxt removal. Type: fix Signed-off-by: Florin Coras Change-Id: Ife52689cd30cdebf36057cf4d20d7f6207f1e29e --- src/vnet/tcp/tcp_debug.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/vnet/tcp/tcp_debug.c') diff --git a/src/vnet/tcp/tcp_debug.c b/src/vnet/tcp/tcp_debug.c index cf61d226c7f..e3d7452b591 100644 --- a/src/vnet/tcp/tcp_debug.c +++ b/src/vnet/tcp/tcp_debug.c @@ -53,6 +53,29 @@ tcp_debug_show_groups (void) tdm->grp_dbg_lvl[i]); } +static void +tcp_debug_check_lc (void) +{ + tcp_dbg_main_t *tdm = &tcp_dbg_main; + int i, have_enabled = 0; + + if (tdm->grp_dbg_lvl[TCP_EVT_GRP_LC]) + return; + + for (i = 0; i < TCP_EVT_N_GRP; i++) + { + if (tdm->grp_dbg_lvl[i]) + { + have_enabled = 1; + break; + } + } + + /* Make sure LC is enabled for track initialization */ + if (have_enabled) + tdm->grp_dbg_lvl[TCP_EVT_GRP_LC] = 1; +} + static clib_error_t * tcp_debug_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) @@ -103,6 +126,8 @@ tcp_debug_fn (vlib_main_t * vm, unformat_input_t * input, tdm->grp_dbg_lvl[group] = level; + tcp_debug_check_lc (); + done: unformat_free (line_input); -- cgit 1.2.3-korg