Răsfoiți Sursa

qcacld-3.0: Don't invoke QDF_BUG in case of timeout

Currently, when bus resume is triggred by host then host waits
for resume event from fw and in case of failure QDF_BUG is
triggered but QDF_BUG is triggred in case of timeout/fw doesn't
send resume event within 4 seconds which may cause unwanted
crash instead of self recovery.

Fix is not to invoke QDF_BUG in case of failure to avoid
unwanted crash instead of self recovery.

Change-Id: I34a2fa9374d35beff719499557f5fbc78ced28d8
CRs-Fixed: 3110014
sheenam monga 3 ani în urmă
părinte
comite
c5a88e2f18
1 a modificat fișierele cu 3 adăugiri și 2 ștergeri
  1. 3 2
      core/hdd/src/wlan_hdd_driver_ops.c

+ 3 - 2
core/hdd/src/wlan_hdd_driver_ops.c

@@ -1501,10 +1501,11 @@ int wlan_hdd_bus_resume(enum qdf_suspend_type type)
 out:
 	hif_system_pm_set_state_suspended(hif_ctx);
 	if (cds_is_driver_recovering() || cds_is_driver_in_bad_state() ||
-		cds_is_fw_down())
+	    cds_is_fw_down())
 		return 0;
 
-	QDF_BUG(false);
+	if (status != -ETIMEDOUT)
+		QDF_BUG(false);
 
 	return status;
 }