From: Antonio Quartulli Date: Fri, 20 May 2011 23:33:07 +0000 (+0200) Subject: batman-adv: use is_broadcast_ether_addr() instead of compare_eth(.., brd_addr) X-Git-Tag: firefly_0821_release~3680^2~5008^2~199^2~30 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=44e92bc8d6366ebe477cab23199b9f50328d326a;p=firefly-linux-kernel-4.4.55.git batman-adv: use is_broadcast_ether_addr() instead of compare_eth(.., brd_addr) Instead of comparing mac addresses with the broadcast address by means of compare_eth(), the is_broadcast_ether_addr() kernel function has to be used. Signed-off-by: Antonio Quartulli Acked-by: Sven Eckelmann Signed-off-by: Sven Eckelmann --- diff --git a/net/batman-adv/routing.c b/net/batman-adv/routing.c index 07f23ba31ad4..90ae6f0c30f3 100644 --- a/net/batman-adv/routing.c +++ b/net/batman-adv/routing.c @@ -661,7 +661,7 @@ void receive_bat_packet(const struct ethhdr *ethhdr, hard_iface->net_dev->dev_addr)) is_my_oldorig = 1; - if (compare_eth(ethhdr->h_source, broadcast_addr)) + if (is_broadcast_ether_addr(ethhdr->h_source)) is_broadcast = 1; } rcu_read_unlock();