mac80211: use unaligned safe memcmp() in-place of compare_ether_addr()

After fixing zd1211rw: use unaligned safe memcmp() in-place of
compare_ether_addr(), I started to see kernel log messages detailing
unaligned access:

Kernel unaligned access at TPC[100f7f44] sta_info_get+0x24/0x68 [mac80211]

As with the aforementioned patch, the unaligned access was eminating
from a compare_ether_addr() call. Concerned that whilst it was safe to
assume that unalignment was the norm for the zd1211rw, and take
preventative measures, it may not be the case or acceptable to use the
easy fix of changing the call to memcmp().

My research however indicated that it was OK to do this, as there are
a few instances where memcmp() is the preferred mechanism for doing
mac address comparisons throughout the module.

Signed-off-by: Shaddy Baddah <shaddy_baddah@hotmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Shaddy Baddah and committed by
John W. Linville
5cf12e8d b8ddafd7

+1 -1
+1 -1
net/mac80211/sta_info.c
··· 99 99 100 100 sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]); 101 101 while (sta) { 102 - if (compare_ether_addr(sta->sta.addr, addr) == 0) 102 + if (memcmp(sta->sta.addr, addr, ETH_ALEN) == 0) 103 103 break; 104 104 sta = rcu_dereference(sta->hnext); 105 105 }