batadv: Slight optimization of batadv_compare_eth
authorJoe Perches <joe@perches.com>
Fri, 6 Dec 2013 22:39:46 +0000 (14:39 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 10 Dec 2013 01:58:11 +0000 (20:58 -0500)
Use the newly added generic routine ether_addr_equal_unaligned
to test if possibly unaligned to u16 Ethernet addresses are equal.

This slightly improves comparison time for systems with
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/batman-adv/main.h

index f94f287b867083e755bd62dcc56af88f30837b33..322dd7323732cf724f1bedbdc0f7d246bff1bb20 100644 (file)
@@ -266,7 +266,7 @@ static inline void batadv_dbg(int type __always_unused,
  */
 static inline int batadv_compare_eth(const void *data1, const void *data2)
 {
-       return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
+       return ether_addr_equal_unaligned(data1, data2);
 }
 
 /**