|
@@ -5755,6 +5755,25 @@ void wlan_hdd_reset_prob_rspies(struct hdd_adapter *adapter)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_ipa_ap_disconnect_evt() - Indicate wlan ipa ap disconnect event
|
|
|
+ * @hdd_ctx: hdd context
|
|
|
+ * @adapter: hdd adapter
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static inline
|
|
|
+void hdd_ipa_ap_disconnect_evt(struct hdd_context *hdd_ctx,
|
|
|
+ struct hdd_adapter *adapter)
|
|
|
+{
|
|
|
+ if (ucfg_ipa_is_enabled()) {
|
|
|
+ ucfg_ipa_uc_disconnect_ap(hdd_ctx->pdev,
|
|
|
+ adapter->dev);
|
|
|
+ ucfg_ipa_cleanup_dev_iface(hdd_ctx->pdev,
|
|
|
+ adapter->dev);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
QDF_STATUS hdd_stop_adapter(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter *adapter)
|
|
|
{
|
|
@@ -5972,9 +5991,12 @@ QDF_STATUS hdd_stop_adapter(struct hdd_context *hdd_ctx,
|
|
|
status = qdf_wait_for_event_completion(
|
|
|
&hostapd_state->qdf_stop_bss_event,
|
|
|
SME_CMD_STOP_BSS_TIMEOUT);
|
|
|
- if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
hdd_err("failure waiting for wlansap_stop_bss %d",
|
|
|
status);
|
|
|
+ hdd_ipa_ap_disconnect_evt(hdd_ctx,
|
|
|
+ adapter);
|
|
|
+ }
|
|
|
} else {
|
|
|
hdd_err("failure in wlansap_stop_bss");
|
|
|
}
|