From: Mohsin Kazmi Date: Mon, 4 Oct 2021 09:29:08 +0000 (+0200) Subject: interface: free the output_node_thread_runtimes X-Git-Tag: v22.06-rc0~459 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=7318c420d1bddd51ea69b433113ac843af2aee3b;p=vpp.git interface: free the output_node_thread_runtimes Type: fix output_node_thread_runtimes was not freed when an interface is deleted. This patch fixes it. Change-Id: I763b0109be1904d43839528a346f3b9aa8927205 Signed-off-by: Mohsin Kazmi --- diff --git a/src/vnet/interface.c b/src/vnet/interface.c index 7b5d4d6df66..ad6d9ccfdb8 100644 --- a/src/vnet/interface.c +++ b/src/vnet/interface.c @@ -1113,6 +1113,7 @@ vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index) hash_unset_mem (im->hw_interface_by_name, hw->name); vec_free (hw->name); vec_free (hw->hw_address); + vec_free (hw->output_node_thread_runtimes); pool_put (im->hw_interfaces, hw); }