[NET]: Use newer is_multicast_ether_addr() in some files
This uses is_multicast_ether_addr() because it has recently been changed to do the same thing these seperate tests are doing. Signed-off-by: Kris Katterjohn <kjak@users.sourceforge.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d99cf9d679
commit
dbbc098828
@@ -68,7 +68,7 @@ int br_handle_frame_finish(struct sk_buff *skb)
|
||||
}
|
||||
}
|
||||
|
||||
if (dest[0] & 1) {
|
||||
if (is_multicast_ether_addr(dest)) {
|
||||
br_flood_forward(br, skb, !passedup);
|
||||
if (!passedup)
|
||||
br_pass_frame_up(br, skb);
|
||||
|
Reference in New Issue
Block a user