From 3e9ad83d5f2b83d5d9d50eb4573f79741f5dc4ce Mon Sep 17 00:00:00 2001 From: Nitesh Shah Date: Tue, 6 Jun 2017 12:59:09 +0530 Subject: qcacld-2.0: Teardown TDLS links before starting interface If the TDLS links exists and SAP comes up, there is a chance that the peer is created for SAP before deleting TDLS peers, thus leading to crash. The fix is to teardown the TDLS links before starting hostapd or starting the association process to avoid TDLS in concurrency case. Change-Id: I06c0d4f8965d3a1e614e8bd89f2d6af0a504fa9e CRs-Fixed: 2056845 --- CORE/HDD/src/wlan_hdd_cfg80211.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c index 71fd03b45b28..05dd0c1dc2d8 100644 --- a/CORE/HDD/src/wlan_hdd_cfg80211.c +++ b/CORE/HDD/src/wlan_hdd_cfg80211.c @@ -16374,6 +16374,7 @@ static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter, int ret; ENTER(); + wlan_hdd_tdls_disable_offchan_and_teardown_links(pHddCtx); iniConfig = pHddCtx->cfg_ini; pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pHostapdAdapter); @@ -21640,6 +21641,8 @@ int wlan_hdd_cfg80211_connect_start( hdd_adapter_t *pAdapter, return -EINVAL; } + wlan_hdd_tdls_disable_offchan_and_teardown_links(pHddCtx); + pRoamProfile = &pWextState->roamProfile; if (pRoamProfile) -- cgit v1.2.3