blob: a81f4a0c61ffe1a0638f6a687a92c2ede478bd47 [file] [log] [blame]
developer1a173672023-12-21 14:49:33 +08001From 2cf6dd719d5f5c095ae7790430fac9468a7568c0 Mon Sep 17 00:00:00 2001
developer692ed9b2023-06-19 12:03:50 +08002From: Amit Khatri <amit.khatri@mediatek.com>
3Date: Thu, 6 Apr 2023 21:37:33 +0800
developer1a173672023-12-21 14:49:33 +08004Subject: [PATCH 26/37] mtk: mac80211: inrease beacon loss count
developer692ed9b2023-06-19 12:03:50 +08005
6as per eagle code beacone loss time out is
74 seconds.
8in 2G connection getting beacon loss logs in routed client
9scenario.
10
11so increasing beacon loss count from 7 to 20
12
13Signed-off-by: Amit Khatri <amit.khatri@mediatek.com>
14---
15 net/mac80211/mlme.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
developerbd9fa1e2023-10-16 11:04:00 +080019index df39a8b..ccc72da 100644
developer692ed9b2023-06-19 12:03:50 +080020--- a/net/mac80211/mlme.c
21+++ b/net/mac80211/mlme.c
22@@ -61,7 +61,7 @@ MODULE_PARM_DESC(max_probe_tries,
23 * probe on beacon miss before declaring the connection lost
24 * default to what we want.
25 */
26-static int beacon_loss_count = 7;
27+static int beacon_loss_count = 20;
28 module_param(beacon_loss_count, int, 0644);
29 MODULE_PARM_DESC(beacon_loss_count,
30 "Number of beacon intervals before we decide beacon was lost.");
31--
developer1a173672023-12-21 14:49:33 +0800322.18.0
developer692ed9b2023-06-19 12:03:50 +080033