developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame^] | 1 | From 8175f5cdf45728cdfcf34893696f994c6f1e6cc1 Mon Sep 17 00:00:00 2001 |
| 2 | From: Amit Khatri <amit.khatri@mediatek.com> |
| 3 | Date: Thu, 6 Apr 2023 21:37:33 +0800 |
| 4 | Subject: [PATCH 1003/1003] mac80211: mtk: inrease beacon loss count |
| 5 | |
| 6 | as per eagle code beacone loss time out is |
| 7 | 4 seconds. |
| 8 | in 2G connection getting beacon loss logs in routed client |
| 9 | scenario. |
| 10 | |
| 11 | so increasing beacon loss count from 7 to 20 |
| 12 | |
| 13 | Signed-off-by: Amit Khatri <amit.khatri@mediatek.com> |
| 14 | --- |
| 15 | net/mac80211/mlme.c | 2 +- |
| 16 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 17 | |
| 18 | diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c |
| 19 | index 72d153f..458609c 100644 |
| 20 | --- 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 | -- |
| 32 | 2.39.2 |
| 33 | |