From: Arik Nemtsov <arik@xxxxxxxxxx> Make sure the number of spatial streams is correctly updated for a TDLS station. Usually this is done during rate control init, during the add_station nl80211 command. Unfortunately TDLS stations only get valid HT/VHT-cap information in the change_station nl80211 command, and rate-control init is delayed accordingly. Some drivers (iwlwifi) assume the nss will be appropriately during the sta_state(assoc) callback, and this doesn't hold for TDLS. Initialize the nss earlier for TDLS peers, which also has the benefit of making sta_state behavior more consistent. Signed-off-by: Arik Nemtsov <arikx.nemtsov@xxxxxxxxx> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@xxxxxxxxx> --- net/mac80211/cfg.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 02f1125..bc33911 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c @@ -1126,6 +1126,10 @@ static int sta_apply_parameters(struct ieee80211_local *local, ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband, params->vht_capa, sta); + if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) && + (params->ht_capa || params->vht_capa)) + ieee80211_sta_set_rx_nss(sta); + if (params->opmode_notif_used) { /* returned value is only needed for rc update, but the * rc isn't initialized here yet, so ignore it -- 1.9.1 -- 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