blob: a46f2ccc37eb86b0631a64eb9266dd2795adf8ed [file] [log] [blame]
developere0cba192023-07-28 07:08:38 +08001From aad4949a5c4e13a7bff49a4bfae2b5bc90e65143 Mon Sep 17 00:00:00 2001
developer8fc8cbe2023-06-09 09:29:57 +08002From: Lian Chen <lian.chen@mediatek.com>
3Date: Wed, 7 Jun 2023 15:30:34 +0800
developere0cba192023-07-28 07:08:38 +08004Subject: [PATCH 18/19] mac80211: mtk: support configurable addba resp time.
developer8fc8cbe2023-06-09 09:29:57 +08005
6---
7 net/mac80211/agg-tx.c | 8 +++++++-
8 1 file changed, 7 insertions(+), 1 deletion(-)
9
10diff --git a/net/mac80211/agg-tx.c b/net/mac80211/agg-tx.c
11index 6992c1f..ad0c0d6 100644
12--- a/net/mac80211/agg-tx.c
13+++ b/net/mac80211/agg-tx.c
14@@ -16,10 +16,16 @@
15 #include <linux/slab.h>
16 #include <linux/export.h>
17 #include <net/mac80211.h>
18+#include <linux/moduleparam.h>
19 #include "ieee80211_i.h"
20 #include "driver-ops.h"
21 #include "wme.h"
22
23+static int addba_resp_wait_count = 2;
24+module_param(addba_resp_wait_count, int, 0644);
25+MODULE_PARM_DESC(addba_resp_wait_count,
26+ "Number of ADDBA_RESP_INTERVAL to wait for addba response");
27+
28 /**
29 * DOC: TX A-MPDU aggregation
30 *
31@@ -460,7 +466,7 @@ static void ieee80211_send_addba_with_timeout(struct sta_info *sta,
32 u16 buf_size;
33
34 /* activate the timer for the recipient's addBA response */
35- mod_timer(&tid_tx->addba_resp_timer, jiffies + ADDBA_RESP_INTERVAL);
36+ mod_timer(&tid_tx->addba_resp_timer, jiffies + addba_resp_wait_count * ADDBA_RESP_INTERVAL);
37 ht_dbg(sdata, "activated addBA response timer on %pM tid %d\n",
38 sta->sta.addr, tid);
39
40--
412.18.0
42