Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9cd4fe5 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

batadv: Slight optimization of batadv_compare_eth



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: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 73eaef87
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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)
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);
}
}


/**
/**