Devices: set interface placement does not remove the old interface placement 47/6147/2
authorSteven <sluong@cisco.com>
Tue, 11 Apr 2017 19:24:47 +0000 (12:24 -0700)
committerDamjan Marion <dmarion.lists@gmail.com>
Tue, 11 Apr 2017 20:46:52 +0000 (20:46 +0000)
The command set interface placement is supposed to remove the existing
interface placement and add a new interface placement based on the given
options. My quick test for the CLI shows that the old interface placement
continues to exist. But the new interface placement is also added.

The bug exists in vnet_device_input_unassign_thread which checks
the old thread index is the same as the passed thread index and skips the
deletion if they are the same.

The fix is to remove the check which is not supposed to be there.

Change-Id: Ib055721fad47513949a03b3cb6dc292bd19fd1e8
Signed-off-by: Steven <sluong@cisco.com>
src/vnet/devices/devices.c

index c8a9508..2f55adc 100644 (file)
@@ -174,9 +174,6 @@ vnet_device_input_unassign_thread (vnet_main_t * vnm, u32 hw_if_index,
 
   old_thread_index = hw->input_node_thread_index_by_queue[queue_id];
 
-  if (old_thread_index == thread_index)
-    return 0;
-
   vm = vlib_mains[old_thread_index];
 
   rt = vlib_node_get_runtime_data (vm, hw->input_node_index);