Wireless vlan interfaces need to have the same mac address as other sub interfaces. Rather than complicate the kernel here by adding yet another case where uniqueness is not required, remove the check on mac address uniqueness altogether.
We should not implement a mac address allocation policy here. It is difficult to get it right in all cases and does not belong in the kernel. It is better to leave this to be implemented as a userspace policy. Signed-off-by: David Kimdon <[EMAIL PROTECTED]> Index: linux-2.6.16/net/d80211/ieee80211.c =================================================================== --- linux-2.6.16.orig/net/d80211/ieee80211.c +++ linux-2.6.16/net/d80211/ieee80211.c @@ -2116,17 +2116,6 @@ static struct net_device_stats *ieee8021 return &(sdata->stats); } -static inline int identical_mac_addr_allowed(int type1, int type2) -{ - return (type1 == IEEE80211_IF_TYPE_MNTR || - type2 == IEEE80211_IF_TYPE_MNTR || - (type1 == IEEE80211_IF_TYPE_AP && - type2 == IEEE80211_IF_TYPE_WDS) || - (type1 == IEEE80211_IF_TYPE_WDS && - (type2 == IEEE80211_IF_TYPE_WDS || - type2 == IEEE80211_IF_TYPE_AP))); -} - static int ieee80211_master_open(struct net_device *dev) { struct ieee80211_local *local = dev->ieee80211_ptr; @@ -2202,22 +2191,12 @@ static void ieee80211_start_hard_monitor static int ieee80211_open(struct net_device *dev) { - struct ieee80211_sub_if_data *sdata, *nsdata; + struct ieee80211_sub_if_data *sdata; struct ieee80211_local *local = dev->ieee80211_ptr; struct ieee80211_if_init_conf conf; int res; sdata = IEEE80211_DEV_TO_SUB_IF(dev); - list_for_each_entry(nsdata, &local->sub_if_list, list) { - struct net_device *ndev = nsdata->dev; - - if (ndev != dev && ndev != local->mdev && - netif_running(ndev) && - memcmp(dev->dev_addr, ndev->dev_addr, ETH_ALEN) == 0 && - !identical_mac_addr_allowed(sdata->type, nsdata->type)) { - return -ENOTUNIQ; - } - } if (sdata->type == IEEE80211_IF_TYPE_WDS && memcmp(sdata->u.wds.remote_addr, "\0\0\0\0\0\0", ETH_ALEN) == 0) return -ENOLINK; -- - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html