Przeglądaj źródła

qcacld-3.0: Increase the bad BSSID threshold counter max value

"bad_bssid_counter_thresh" is an ini parameter to specify the threshold
after which the BSSID is in the avoid list should be moved to
deny list, assuming that the AP or the gateway with which the data
stall happened has not recovered, and now the STA got the NUD
failure again with the BSSID.
Currently, in driver sets max value for this ini param as 10.
But for some new requirement, this value is required to 100 as
user does not want any BSSID in reject list.
So, to enable this feature, increase the max value for this param
as 100.

Change-Id: I80e908c82ea74801bfcb04a9669cc4b4589f0dec
CRs-Fixed: 3382136
Rahul Gusain 2 lat temu
rodzic
commit
3ba0586a80
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      components/denylist_mgr/dispatcher/inc/cfg_dlm.h

+ 3 - 3
components/denylist_mgr/dispatcher/inc/cfg_dlm.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -56,7 +56,7 @@
  * <ini>
  * bad_bssid_counter_thresh - Threshold to move the Ap from avoid to denylist.
  * @Min: 2
- * @Max: 10
+ * @Max: 100
  * @Default: 3
  *
  * This ini is used to specify the threshld after which the BSSID which is in
@@ -73,7 +73,7 @@
 #define CFG_BAD_BSSID_COUNTER_THRESHOLD CFG_INI_UINT( \
 				"bad_bssid_counter_thresh", \
 				2, \
-				10, \
+				100, \
 				3, \
 				CFG_VALUE_OR_DEFAULT, \
 				"bad bssid counter thresh")