wlan-ap-Telecominfraproject/feeds/ipq95xx/mac80211/patches/qca/821-16-wifi-mac80211-change-AddBA-deny-error-message.patch
John Crispin 144c5d00f4 ipq95xx/mac80211: update to ATH12.3-CS
Signed-off-by: John Crispin <john@phrozen.org>
2024-02-28 18:56:21 +01:00

31 lines
1.1 KiB
Diff

From 1864d995a43eb5925b3b89969f19bf62376954fa Mon Sep 17 00:00:00 2001
From: Ramasamy Kaliappan <quic_rkaliapp@quicinc.com>
Date: Mon, 3 Jul 2023 16:27:24 +0530
Subject: [PATCH 14/16] 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>
---
net/mac80211/agg-rx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c
index 31ab96e..b8ea025 100644
--- a/net/mac80211/agg-rx.c
+++ b/net/mac80211/agg-rx.c
@@ -314,7 +314,7 @@ void ___ieee80211_start_rx_ba_session(struct sta_info *sta,
rcu_read_unlock();
if (!sta->sta.deflink.ht_cap.ht_supported && 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;
--
2.17.1