Hi! Building current wireless-testing (master-2010-12-06) without the Mesh option is broken: CC [M] net/mac80211/main.o /home/br1/ath/wireless-testing/net/mac80211/main.c: In function âieee80211_bss_info_change_notifyâ: /home/br1/ath/wireless-testing/net/mac80211/main.c:250: error: âunion <anonymous>â has no member named âmeshâ make[3]: *** [net/mac80211/main.o] Error 1 make[2]: *** [net/mac80211] Error 2 make[1]: *** [net] Error 2 make: *** [sub-make] Error 2 It needs something like: diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 40bd12e..3d988ca 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c @@ -245,10 +245,12 @@ void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata, sdata->vif.bss_conf.enable_beacon = !!sdata->u.ibss.presp; break; +#ifdef CONFIG_MAC80211_MESH case NL80211_IFTYPE_MESH_POINT: sdata->vif.bss_conf.enable_beacon = !!sdata->u.mesh.mesh_id_len; break; +#endif default: /* not reached */ WARN_ON(1); bruno -- 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