aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/bonding/device.c
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2019-02-14 07:44:14 +0000
committerDamjan Marion <dmarion@me.com>2019-02-21 18:53:55 +0000
commit5d0d5494db58422eb528c0f8b39a86ea966505e9 (patch)
treea8efcd0d53d2f7074325fb136aaed2043d766323 /src/vnet/bonding/device.c
parent5a6c8096cb51065b056c927133781c9f2db9148d (diff)
Revert "bond: problem switching from l2 to l3"
During CSIT testing we discovered that LACP tests were failing and producing coredumps. Reverting this patch fix the problem with VPP crashing. This reverts commit f23890138e02d4218c828c427f687f8ecdb0e165. Change-Id: Icf97053ce1473350add885cbebe591f7f3efcbea Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'src/vnet/bonding/device.c')
-rw-r--r--src/vnet/bonding/device.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/vnet/bonding/device.c b/src/vnet/bonding/device.c
index e288c572b19..c3ff566681d 100644
--- a/src/vnet/bonding/device.c
+++ b/src/vnet/bonding/device.c
@@ -104,17 +104,6 @@ bond_set_l2_mode_function (vnet_main_t * vnm,
ethernet_set_rx_redirect (vnm, sif_hw, 1);
}
}
- else if ((bif_hw->l2_if_count == 0) && (l2_if_adjust == -1))
- {
- /* Just removed last L2 subinterface on this port */
- vec_foreach (sw_if_index, bif->slaves)
- {
- sif_hw = vnet_get_sup_hw_interface (vnm, *sw_if_index);
-
- /* Allow ip packets to go directly to ip4-input etc */
- ethernet_set_rx_redirect (vnm, sif_hw, 0);
- }
- }
return 0;
}