diff options
author | Johannes Berg <johannes.berg@intel.com> | 2022-09-19 19:19:30 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-10-07 15:24:23 +0200 |
commit | e406121e1860e7789ebfa0e1b6853e48dde8b879 (patch) | |
tree | eee9671c9972f623e45d63251389c9fd89145b55 /net | |
parent | 7a693ce0033707a49e951769cc230ef870ff76a8 (diff) | |
download | linux-stable-e406121e1860e7789ebfa0e1b6853e48dde8b879.tar.gz linux-stable-e406121e1860e7789ebfa0e1b6853e48dde8b879.tar.bz2 linux-stable-e406121e1860e7789ebfa0e1b6853e48dde8b879.zip |
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 <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/agg-rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c index eaef88a603e5..f8bec5ee5b44 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; |