blob: aba73e7f62672a560c93c9803a8ca851d6c97a89 [file] [log] [blame]
developer77ffbda2022-12-16 04:36:08 +08001From 63eb14a66a1ed384a0bb952b9b50fe81a859690a Mon Sep 17 00:00:00 2001
2From: TomLiu <tomml.liu@mediatek.com>
3Date: Wed, 14 Dec 2022 00:26:50 -0800
4Subject: [PATCH 910/912] mac80211: mtk: fix tx amsdu aggregation
5
6---
7 include/net/mac80211.h | 7 +++++++
8 net/mac80211/agg-tx.c | 6 ++++--
9 2 files changed, 11 insertions(+), 2 deletions(-)
10
11diff --git a/include/net/mac80211.h b/include/net/mac80211.h
12index 4485cfa..5429de0 100644
13--- a/include/net/mac80211.h
14+++ b/include/net/mac80211.h
15@@ -2851,6 +2851,13 @@ static inline void _ieee80211_hw_set(struct ieee80211_hw *hw,
16 }
17 #define ieee80211_hw_set(hw, flg) _ieee80211_hw_set(hw, IEEE80211_HW_##flg)
18
19+static inline void _ieee80211_hw_clear(struct ieee80211_hw *hw,
20+ enum ieee80211_hw_flags flg)
21+{
22+ return __clear_bit(flg, hw->flags);
23+}
24+#define ieee80211_hw_clear(hw, flg) _ieee80211_hw_clear(hw, IEEE80211_HW_##flg)
25+
26 /**
27 * struct ieee80211_scan_request - hw scan request
28 *
29diff --git a/net/mac80211/agg-tx.c b/net/mac80211/agg-tx.c
30index 1f46561..318c71e 100755
31--- a/net/mac80211/agg-tx.c
32+++ b/net/mac80211/agg-tx.c
33@@ -66,7 +66,8 @@ static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
34 struct ieee80211_local *local = sdata->local;
35 struct sk_buff *skb;
36 struct ieee80211_mgmt *mgmt;
37- u16 capab;
38+ u16 capab = 0;
39+ bool amsdu = ieee80211_hw_check(&local->hw, SUPPORTS_AMSDU_IN_AMPDU);
40
41 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
42
43@@ -95,7 +96,8 @@ static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
44 mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
45
46 mgmt->u.action.u.addba_req.dialog_token = dialog_token;
47- capab = IEEE80211_ADDBA_PARAM_AMSDU_MASK;
48+ if (amsdu)
49+ capab = IEEE80211_ADDBA_PARAM_AMSDU_MASK;
50 capab |= IEEE80211_ADDBA_PARAM_POLICY_MASK;
51 capab |= u16_encode_bits(tid, IEEE80211_ADDBA_PARAM_TID_MASK);
52 capab |= u16_encode_bits(agg_size, IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK);
53--
542.36.1
55