Linux wireless drivers development
 help / color / mirror / Atom feed
* [RFC] mac80211: always have a valid master device mac address
@ 2007-11-20  0:17 Johannes Berg
  2007-11-20 13:22 ` Johannes Berg
  0 siblings, 1 reply; 3+ messages in thread
From: Johannes Berg @ 2007-11-20  0:17 UTC (permalink / raw)
  To: Michael Wu; +Cc: linux-wireless

Once a while a driver will give us a bogus MAC address. This can be
remedied by the user by setting the MAC address on the wlanX interface,
but unfortunately one cannot change the address of the wmasterX
interface which results in wlanX going up but wmasterX refusing to. This
is pretty bad. This patch forces wmasterX to have a valid MAC address.
The actual address doesn't matter at all.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
---
Or should we hardcode one and always use that instead of the device
address?

--- everything.orig/net/mac80211/ieee80211.c	2007-11-20 00:25:03.008708602 +0100
+++ everything/net/mac80211/ieee80211.c	2007-11-20 00:27:09.278700356 +0100
@@ -1286,6 +1286,8 @@ int ieee80211_register_hw(struct ieee802
 		goto fail_dev;
 
 	memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
+	if (!is_valid_ether_addr(local->mdev->dev_addr))
+		random_ether_addr(local->mdev->dev_addr);
 	SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
 
 	result = register_netdevice(local->mdev);



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-11-20 16:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-20  0:17 [RFC] mac80211: always have a valid master device mac address Johannes Berg
2007-11-20 13:22 ` Johannes Berg
2007-11-20 16:43   ` Dan Williams

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox