summaryrefslogtreecommitdiff
path: root/zebra/zebra_mlag.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2023-11-13 09:07:06 -0500
committerDonald Sharp <sharpd@nvidia.com>2023-11-13 09:16:45 -0500
commitc416603235c49455f93eaffdcbc0f3a96cca9389 (patch)
tree6515c6d225224d4be424f33972102c0dad23162a /zebra/zebra_mlag.c
parent150e3ea26db9d59bd4c10a2f9f5d7a0a82a42aa5 (diff)
zebra: More memory free up on shutdown
a) nl_batch_tx_buf was not being freed b) the mlag_fifo was not being freed c) the vrf->ns_ctxt was not being freed Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_mlag.c')
-rw-r--r--zebra/zebra_mlag.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/zebra_mlag.c b/zebra/zebra_mlag.c
index 7715eab0a8..2eb4fb668c 100644
--- a/zebra/zebra_mlag.c
+++ b/zebra/zebra_mlag.c
@@ -627,6 +627,8 @@ void zebra_mlag_init(void)
void zebra_mlag_terminate(void)
{
+ stream_fifo_free(zrouter.mlag_info.mlag_fifo);
+ zrouter.mlag_info.mlag_fifo = NULL;
}