bond: packet drops on VPP bond interface [VPP-1544] 68/16868/3
authorSteven <sluong@cisco.com>
Thu, 17 Jan 2019 23:11:29 +0000 (15:11 -0800)
committerDamjan Marion <dmarion@me.com>
Wed, 23 Jan 2019 21:06:29 +0000 (21:06 +0000)
commite43278f75fe3188551580c7d7991958805756e2f
tree0937ea661cef9226ffcd3c1cbcd5b45d8f6295a7
parent9a8a12a06e9e67c4ef339d3002cdc5151341826d
bond: packet drops on VPP bond interface [VPP-1544]

We register callback for VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION and
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION to add and remove the slave
interface from the bond interface accordingly. For static bonding without
lacp, one would think that it is good enough to put the slave interface into
the ective slave set as soon as it is configured. Wrong, sometimes the slave
interface is configured to be part of the bonding without ever bringing up the
hardware carrier or setting the admin state to up. In that case, we send
traffic to the "dead" slave interface.

The fix is to make sure both the carrier and admin state are up before we put
the slave into the active set for forwarding traffic.

Change-Id: I93b1c36d5481ca76cc8b87e8ca1b375ca3bd453b
Signed-off-by: Steven <sluong@cisco.com>
src/vnet/bonding/cli.c
src/vnet/bonding/node.c