diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2021-10-01 19:01:48 +0200 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2021-10-04 07:41:52 +0000 |
commit | ddb192951c160c7bdb2c630a781b9a4878dae09a (patch) | |
tree | 61ff4b6072448bb6f553f798a128f8ae7e125adc /src/vnet/interface.c | |
parent | aca308d8f9c87b950a4ed690a1ed92664a14b30e (diff) |
interface: remove the input_node_thread_index_by_queue
Type: fix
input_node_thread_index_by_queue is not being used anymore.
Change-Id: I0141fa0d024affb39771acf7516e064c5c8acfe9
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vnet/interface.c')
-rw-r--r-- | src/vnet/interface.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vnet/interface.c b/src/vnet/interface.c index d0f94b101ad..56eff35e154 100644 --- a/src/vnet/interface.c +++ b/src/vnet/interface.c @@ -1113,7 +1113,6 @@ 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->input_node_thread_index_by_queue); vec_free (hw->rx_queue_indices); pool_put (im->hw_interfaces, hw); } |