Procházet zdrojové kódy

qcacld-3.0: Modify the min value of sae_auth_failure_timeout

Currently, the expected range of sae_auth_failure_timeout
is 500-1000ms. DUT sta retries SAE authentication frame if it
hasn't received response within the configured time. But there
can be APs where there might be a timeout at AP and AP proceeds
with next frame(SAE confirm response) if the previous frame
is not acked by STA or SAE confirm request is not received
within this time.
Custom platforms may want to address this by retrying more
aggressively, e.g. retry within 100ms.

Add provision for the same by making min value as 100 ms.

Change-Id: I09fa57808edc6c00bda2dbe5d988558c7ef48e17
CRs-Fixed: 3662150
Srinivas Dasari před 1 rokem
rodič
revize
591177a99b

+ 3 - 3
components/mlme/dispatcher/inc/cfg_mlme_timeout.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2019, 2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-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
@@ -271,7 +271,7 @@
 /*
  * <ini>
  * sae_auth_failure_timeout - SAE Auth failure timeout value in msec
- * @Min: 500
+ * @Min: 100
  * @Max: 1000
  * @Default: 1000
  *
@@ -283,7 +283,7 @@
  */
 #define CFG_SAE_AUTH_FAILURE_TIMEOUT CFG_INI_UINT( \
 		"sae_auth_failure_timeout", \
-		500, \
+		100, \
 		1000, \
 		1000, \
 		CFG_VALUE_OR_DEFAULT, \