aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMohsin Kazmi <sykazmi@cisco.com>2021-10-01 19:01:48 +0200
committerBeno�t Ganne <bganne@cisco.com>2021-10-04 07:41:52 +0000
commitddb192951c160c7bdb2c630a781b9a4878dae09a (patch)
tree61ff4b6072448bb6f553f798a128f8ae7e125adc /src
parentaca308d8f9c87b950a4ed690a1ed92664a14b30e (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')
-rw-r--r--src/vnet/interface.c1
-rw-r--r--src/vnet/interface.h3
2 files changed, 0 insertions, 4 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);
}
diff --git a/src/vnet/interface.h b/src/vnet/interface.h
index 92a43c51958..0a30239e982 100644
--- a/src/vnet/interface.h
+++ b/src/vnet/interface.h
@@ -717,9 +717,6 @@ typedef struct vnet_hw_interface_t
/* Input node */
u32 input_node_index;
- /* input node cpu index by queue */
- u32 *input_node_thread_index_by_queue;
-
vnet_hw_if_rx_mode default_rx_mode;
/* rx queues */