On Sat, 2013-02-02 at 17:02 -0800, Thomas Pedersen wrote: > - pos = skb_put(skb, ie_ssid_len); > - *pos++ = WLAN_EID_SSID; > + if (ieee80211_vif_is_mesh(vif)) { > + pos = skb_put(skb, 2 + 2 + ssid_len); > + *pos++ = WLAN_EID_SSID; > + *pos++ = 0; > + /* NOTE: mesh ID will be out of order */ Why put it out of order? Also I'm not convinced that it's a good idea to translate "SSID" from the userspace API to "mesh ID" silently? Might make more sense to have those separately maybe? I mean, it seems reasonable to even think you might scan for a mesh network when you're not a mesh interface, for example? johannes -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html