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)))) { > + (!is_multicast_ether_addr(&hdr->d_addr) > && > + !is_same_ether_addr(&bond_mac, > &hdr->d_addr))))) { >
You can drop extra parenthesis here, but beside that I think it is OK. Should be marked as bugfix. Acked-by: Pawel Wodkowski <pawelx.wodkowski at intel.com>