qcacld-3.0: Increase sae max auth retry count to 3

Increase max sae auth frame retry count to 3 since total SAE auth
timeout is 5s.

Change-Id: I5902cc3411f713eaeed5ef7754fe7fe8e590b459
CRs-Fixed: 2765211
This commit is contained in:
Liangwei Dong
2020-08-28 15:52:37 +08:00
committed by snandini
parent 7b0d6954c9
commit 34197fc832
2 changed files with 7 additions and 5 deletions

View File

@@ -4124,6 +4124,7 @@ wlan_mlme_get_dfs_chan_ageout_time(struct wlan_objmgr_psoc *psoc,
#define AUTH_INDEX 0
#define MAX_RETRIES 2
#define MAX_ROAM_AUTH_RETRIES 1
#define MAX_AUTH_RETRIES 3
QDF_STATUS
wlan_mlme_get_sae_assoc_retry_count(struct wlan_objmgr_psoc *psoc,
@@ -4164,7 +4165,7 @@ wlan_mlme_get_sae_auth_retry_count(struct wlan_objmgr_psoc *psoc,
QDF_GET_BITS(mlme_obj->cfg.gen.sae_connect_retries,
AUTH_INDEX * NUM_RETRY_BITS, NUM_RETRY_BITS);
*retry_count = QDF_MIN(MAX_RETRIES, *retry_count);
*retry_count = QDF_MIN(MAX_AUTH_RETRIES, *retry_count);
return QDF_STATUS_SUCCESS;
}