Răsfoiți Sursa

qcacld-3.0: Resume all components in case of suspend failure

Currently if driver suspends all the components and after that
if host suspends fails it does not resume all the suspended
components which leads in failure of the operations from these
components.

In current issue driver suspends all the components and it
fails to suspend dp rx refill thread and because of which host
suspend fails. Driver suspends scan component as well as part
of all component suspend which is leading scan requests failures.

TO address above issue, resume all components in case of suspend
failure.

Change-Id: I693049a0c4089eb440f459ed3a066e741e8594fe
CRs-Fixed: 3111885
Ashish 3 ani în urmă
părinte
comite
e6da9ca017
1 a modificat fișierele cu 4 adăugiri și 1 ștergeri
  1. 4 1
      core/hdd/src/wlan_hdd_power.c

+ 4 - 1
core/hdd/src/wlan_hdd_power.c

@@ -2620,7 +2620,7 @@ static int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
 	if (ucfg_ipa_suspend(hdd_ctx->pdev)) {
 		hdd_err("IPA not ready to suspend!");
 		wlan_hdd_inc_suspend_stats(hdd_ctx, SUSPEND_FAIL_IPA);
-		return -EAGAIN;
+		goto resume_all_components;
 	}
 
 	/* Suspend control path scheduler */
@@ -2709,6 +2709,9 @@ resume_ol_rx:
 	hdd_ctx->is_scheduler_suspended = false;
 resume_tx:
 	hdd_resume_wlan();
+resume_all_components:
+	ucfg_pmo_resume_all_components(hdd_ctx->psoc, QDF_SYSTEM_SUSPEND);
+
 	return -ETIME;
 
 }