From d1c0799ef9efaf511a9f3b538d9bbcb4da46ae99 Mon Sep 17 00:00:00 2001 From: Amar Singhal Date: Thu, 29 Mar 2018 13:58:50 -0700 Subject: qcacld-3.0: Reset is_acs_allowed variable when chan count is 0 When world mode is set (ACS chan list is empty) and ACS request comes to driver, is_acs_allowed variable is not reset. Due to this, in subsequent ACS requests, is_acs_allowed variable would become 1, leading to ACS failure in a loop. Fix that. Change-Id: I97689571e147505ea2c21f271c103e3c8cc74b80 CRs-Fixed: 2215385 --- core/hdd/src/wlan_hdd_cfg80211.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/hdd/src/wlan_hdd_cfg80211.c b/core/hdd/src/wlan_hdd_cfg80211.c index 8d0e0255c0d6..79ac6b569e0d 100644 --- a/core/hdd/src/wlan_hdd_cfg80211.c +++ b/core/hdd/src/wlan_hdd_cfg80211.c @@ -1766,6 +1766,8 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy, } if (!sap_config->acs_cfg.ch_list_count) { + qdf_atomic_set(&adapter->sessionCtx.ap.acs_in_progress, 0); + hdd_err("acs config chan count 0"); ret = -EINVAL; goto out; } -- cgit v1.2.3