From e848c8fb8c18bd04d7e27b9574fc8163a4c31d85 Mon Sep 17 00:00:00 2001 From: Mohammed Hawari Date: Mon, 21 Dec 2020 18:19:46 +0100 Subject: interface: let drivers control polling when down Change-Id: I03e164d8d5a329497f422e99f8b0058135241b4e Signed-off-by: Mohammed Hawari Type: fix --- src/vnet/interface/runtime.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/vnet') diff --git a/src/vnet/interface/runtime.c b/src/vnet/interface/runtime.c index f4c09beffd7..019d3ee28d0 100644 --- a/src/vnet/interface/runtime.c +++ b/src/vnet/interface/runtime.c @@ -103,20 +103,12 @@ vnet_hw_if_update_runtime_data (vnet_main_t *vnm, u32 hw_if_index) pool_foreach (rxq, im->hw_if_rx_queues) { u32 ti = rxq->thread_index; - uword flags; hi = vnet_get_hw_interface (vnm, rxq->hw_if_index); if (hi->input_node_index != node_index) continue; - flags = vnet_sw_interface_get_flags (vnm, hi->sw_if_index); - if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) == 0) - { - log_debug ("skip interface %v (admin down)", hi->name); - continue; - } - if (rxq->mode == VNET_HW_IF_RX_MODE_INTERRUPT || rxq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE) last_int = clib_max (last_int, rxq - im->hw_if_rx_queues); -- cgit 1.2.3-korg