[dpdk-dev] [PATCH 3/5] bond mode 4: do not ignore multicast

2015-04-10 Thread Pawel Wodkowski
On 2015-04-06 19:01, Eric Kinzie wrote: > if (unlikely(hdr->ether_type == ether_type_slow_be || > !collecting || (!promisc && > - !is_same_ether_addr(&bond_mac, > &hdr->d_addr { > +

[dpdk-dev] [PATCH 3/5] bond mode 4: do not ignore multicast

2015-04-06 Thread Eric Kinzie
The bonding PMD in mode 4 puts all enslaved interfaces into promiscuous mode in order to receive LACPDUs and must filter unwanted packets after the traffic has been "collected". Allow broadcast and multicast through so that ARP and IPv6 neighbor discovery continue to work. Signed-off-by: Eric Kin