staging: rtl8192e: using random_ether_addr() to generate random MAC
Using random_ether_addr() to generate a random Ethernet address (MAC) that is not multicast and has the local assigned bit set. Not need to duplicating its implementation. spatch with a semantic match is used to found this problem. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ceee26c0e0
commit
71cd7913cb
1 changed files with 1 additions and 7 deletions
|
@ -2620,13 +2620,7 @@ void rtllib_wake_all_queues(struct rtllib_device *ieee)
|
||||||
inline void rtllib_randomize_cell(struct rtllib_device *ieee)
|
inline void rtllib_randomize_cell(struct rtllib_device *ieee)
|
||||||
{
|
{
|
||||||
|
|
||||||
get_random_bytes(ieee->current_network.bssid, ETH_ALEN);
|
random_ether_addr(ieee->current_network.bssid);
|
||||||
|
|
||||||
/* an IBSS cell address must have the two less significant
|
|
||||||
* bits of the first byte = 2
|
|
||||||
*/
|
|
||||||
ieee->current_network.bssid[0] &= ~0x01;
|
|
||||||
ieee->current_network.bssid[0] |= 0x02;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* called in user context only */
|
/* called in user context only */
|
||||||
|
|
Loading…
Add table
Reference in a new issue