|
@@ -1333,6 +1333,7 @@ static void hdd_runtime_suspend_context_init(struct hdd_context *hdd_ctx)
|
|
|
qdf_runtime_lock_init(&ctx->wow_unit_test);
|
|
|
qdf_runtime_lock_init(&ctx->system_suspend);
|
|
|
qdf_runtime_lock_init(&ctx->dyn_mac_addr_update);
|
|
|
+ qdf_runtime_lock_init(&ctx->vdev_destroy);
|
|
|
|
|
|
qdf_rtpm_register(QDF_RTPM_ID_WIPHY_SUSPEND, NULL);
|
|
|
qdf_rtpm_register(QDF_RTPM_ID_PM_QOS_NOTIFY, NULL);
|
|
@@ -1362,6 +1363,7 @@ static void hdd_runtime_suspend_context_deinit(struct hdd_context *hdd_ctx)
|
|
|
qdf_runtime_lock_deinit(&ctx->connect);
|
|
|
qdf_runtime_lock_deinit(&ctx->dfs);
|
|
|
qdf_runtime_lock_deinit(&ctx->system_suspend);
|
|
|
+ qdf_runtime_lock_deinit(&ctx->vdev_destroy);
|
|
|
|
|
|
qdf_rtpm_deregister(QDF_RTPM_ID_WIPHY_SUSPEND);
|
|
|
qdf_rtpm_deregister(QDF_RTPM_ID_PM_QOS_NOTIFY);
|
|
@@ -6469,7 +6471,12 @@ int hdd_vdev_destroy(struct hdd_adapter *adapter)
|
|
|
/* Release the hdd reference */
|
|
|
wlan_objmgr_vdev_release_ref(vdev, WLAN_HDD_ID_OBJ_MGR);
|
|
|
|
|
|
+ /* Get runtime lock to prevent runtime suspend */
|
|
|
+ qdf_runtime_pm_prevent_suspend(&hdd_ctx->runtime_context.vdev_destroy);
|
|
|
+
|
|
|
ret = hdd_vdev_destroy_event_wait(hdd_ctx, vdev);
|
|
|
+
|
|
|
+ qdf_runtime_pm_allow_suspend(&hdd_ctx->runtime_context.vdev_destroy);
|
|
|
return ret;
|
|
|
}
|
|
|
|