|
@@ -15499,6 +15499,20 @@ static void hdd_driver_unload(void)
|
|
|
pr_info("%s: Unloading driver v%s\n", WLAN_MODULE_NAME,
|
|
|
QWLAN_VERSIONSTR);
|
|
|
|
|
|
+ /*
|
|
|
+ * Wait for any trans to complete and then start the driver trans
|
|
|
+ * for the unload. This will ensure that the driver trans proceeds only
|
|
|
+ * after all trans have been completed. As a part of this trans, set
|
|
|
+ * the driver load/unload flag to further ensure that any upcoming
|
|
|
+ * trans are rejected via wlan_hdd_validate_context.
|
|
|
+ */
|
|
|
+ status = osif_driver_sync_trans_start_wait(&driver_sync);
|
|
|
+ QDF_BUG(QDF_IS_STATUS_SUCCESS(status));
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ hdd_err("Unable to unload wlan; status:%u", status);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
hif_ctx = cds_get_context(QDF_MODULE_ID_HIF);
|
|
|
if (hif_ctx) {
|
|
|
/*
|
|
@@ -15520,6 +15534,12 @@ static void hdd_driver_unload(void)
|
|
|
hdd_bus_bw_compute_timer_stop(hdd_ctx);
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * Stop the trans before calling unregister_driver as that involves a
|
|
|
+ * call to pld_remove which in itself is a psoc transaction
|
|
|
+ */
|
|
|
+ osif_driver_sync_trans_stop(driver_sync);
|
|
|
+
|
|
|
/* trigger SoC remove */
|
|
|
wlan_hdd_unregister_driver();
|
|
|
|