From: Johannes Berg Date: Mon, 19 Sep 2022 17:19:30 +0000 (+0200) Subject: wifi: mac80211: change AddBA deny error message X-Git-Tag: v6.2-rc1~99^2~345^2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e406121e1860e7789ebfa0e1b6853e48dde8b879;p=thirdparty%2Flinux.git wifi: mac80211: change AddBA deny error message If the station has no HT, we deny the aggregation session but the error message talks about QoS; change it to say HT instead. Signed-off-by: Johannes Berg --- diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c index eaef88a603e54..f8bec5ee5b448 100644 --- a/net/mac80211/agg-rx.c +++ b/net/mac80211/agg-rx.c @@ -299,7 +299,7 @@ void ___ieee80211_start_rx_ba_session(struct sta_info *sta, if (!sta->sta.deflink.ht_cap.ht_supported && sta->sdata->vif.bss_conf.chandef.chan->band != NL80211_BAND_6GHZ) { ht_dbg(sta->sdata, - "STA %pM erroneously requests BA session on tid %d w/o QoS\n", + "STA %pM erroneously requests BA session on tid %d w/o HT\n", sta->sta.addr, tid); /* send a response anyway, it's an error case if we get here */ goto end;