diff options
| author | Sravan Kumar Kairam <sgoud@codeaurora.org> | 2017-09-06 15:20:02 +0530 |
|---|---|---|
| committer | Sravan Kumar Kairam <sgoud@codeaurora.org> | 2017-09-06 17:47:57 +0530 |
| commit | fad9cb8eaabb2a0bf23921360dc085e5d8f70ab8 (patch) | |
| tree | 1ad104b7d17a766dd740ed9bf181f91a3e85d2bb | |
| parent | 7dee4df9ad0bc0907feffd12abc50fbc1b6d2246 (diff) | |
qcacld-3.0: Remove recovery in progress check
Currently during PDR after client disassociation IPA client
disconnect event is not send because of recovery in progress
condition. After reload IPA pipes are not enabled as IPA context
number of connected stations are non zero which leads to data stall
of backhaul traffic. In this change remove recovery in progress check
which is not necessary in this case.
Change-Id: Id465f78fc224e2c08fb3977266e7032666a22692
CRs-Fixed: 2105106
| -rw-r--r-- | core/hdd/src/wlan_hdd_hostapd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/hdd/src/wlan_hdd_hostapd.c b/core/hdd/src/wlan_hdd_hostapd.c index 57db045ebf07..1264e7c147c2 100644 --- a/core/hdd/src/wlan_hdd_hostapd.c +++ b/core/hdd/src/wlan_hdd_hostapd.c @@ -2063,8 +2063,7 @@ QDF_STATUS hdd_hostapd_sap_event_cb(tpSap_Event pSapEvent, return QDF_STATUS_E_FAILURE; } #ifdef IPA_OFFLOAD - if (!cds_is_driver_recovering() && - hdd_ipa_is_enabled(pHddCtx)) { + if (hdd_ipa_is_enabled(pHddCtx)) { status = hdd_ipa_wlan_evt(pHostapdAdapter, staId, HDD_IPA_CLIENT_DISCONNECT, pSapEvent->sapevt. |
