* Chris Wright (chrisw@xxxxxxxxxxxx) wrote: > while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef, > IEEE80211_CHAN_DISABLED)) { > if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) { > ret = IEEE80211_STA_DISABLE_HT | > IEEE80211_STA_DISABLE_VHT; > goto out; > } Actually, it just looks like this above loop is broken. Code flow is: chandef->width = NL80211_CHAN_WIDTH_20; ... if (!vht_oper || !sband->vht_cap.vht_supported) { ret = IEEE80211_STA_DISABLE_VHT; goto out; } ... out: /* don't print the message below for VHT mismatch if VHT is disabled */ if (ret & IEEE80211_STA_DISABLE_VHT) vht_chandef = *chandef; while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef, IEEE80211_CHAN_DISABLED)) { if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) { ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT; goto out; } ret |= chandef_downgrade(chandef); } We enter the while loop w/ width NL80211_CHAN_WIDTH_20 (i.e. ht_cap.ht_supported is true), do one downgrade to NL80211_CHAN_WIDTH_20_NOHT, and then we are stuck in a permanent loop. I did not see any way that cfg80211_chandef_usable() will update chandef->width so once width is NL80211_CHAN_WIDTH_20_NOHT and ht_cap.ht_supported is true there is no end to the goto loop. So here is a hack that at least gets wireless working (only because there's another AP that's not got 11n enabled I believe). diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 0e5aab1..b68ca05 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -336,7 +336,7 @@ out: if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) { ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT; - goto out; + break; } ret |= chandef_downgrade(chandef); -- 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