ethernet: fix DMAC check and skip unnecessary ones (VPP-1868)
Fix and optimize DMAC check in ethernet-input node to utilize NIC or driver which support L3 DMAC-filtering mode so that DMAC check can be bypassed safely for interfaces/sub-interfaces in L3 mode. Checking of interface in L3-DMAC-filtering state to avoid DMAC check require the following: a) Fix interface driver init sequence for devices which supports L3 DMAC-filtering to indicate its capability and initialize interface to L3 DMAC-filtering state. b) Fix ethernet_set_flags() function and its associated callback flags_change() functions registered by various drivers in interface infra to provide proper L3 DMAC filtering status. Maintain interface/sub-interface L3 config count so DMAC checks can be bypassed if L3 forwarding is not setup on any main/sub-interfaces. Type: fix Ticket: VPP-1868 Signed-off-by: John Lo <loj@cisco.com> Change-Id: I204d90459c13e9e486cfcba4e64e3d479bc9f2ae
This commit is contained in:
@@ -182,7 +182,7 @@ rdma_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hw, u32 flags)
|
||||
|
||||
switch (flags)
|
||||
{
|
||||
case 0:
|
||||
case ETHERNET_INTERFACE_FLAG_DEFAULT_L3:
|
||||
return rdma_dev_set_ucast (rd);
|
||||
case ETHERNET_INTERFACE_FLAG_ACCEPT_ALL:
|
||||
return rdma_dev_set_promisc (rd);
|
||||
@@ -339,9 +339,18 @@ rdma_async_event_cleanup (rdma_device_t * rd)
|
||||
static clib_error_t *
|
||||
rdma_register_interface (vnet_main_t * vnm, rdma_device_t * rd)
|
||||
{
|
||||
return ethernet_register_interface (vnm, rdma_device_class.index,
|
||||
rd->dev_instance, rd->hwaddr.bytes,
|
||||
&rd->hw_if_index, rdma_flag_change);
|
||||
clib_error_t *err =
|
||||
ethernet_register_interface (vnm, rdma_device_class.index,
|
||||
rd->dev_instance, rd->hwaddr.bytes,
|
||||
&rd->hw_if_index, rdma_flag_change);
|
||||
|
||||
/* Indicate ability to support L3 DMAC filtering and
|
||||
* initialize interface to L3 non-promisc mode */
|
||||
vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, rd->hw_if_index);
|
||||
hi->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_MAC_FILTER;
|
||||
ethernet_set_flags (vnm, rd->hw_if_index,
|
||||
ETHERNET_INTERFACE_FLAG_DEFAULT_L3);
|
||||
return err;
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user