|
@@ -1986,9 +1986,6 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
|
|
|
ap_ctx->operating_chan_freq,
|
|
|
sap_config->ch_params.ch_width);
|
|
|
|
|
|
- if (hdd_medium_access_state() == true)
|
|
|
- hdd_medium_assess_init();
|
|
|
-
|
|
|
sap_config->ch_params = ap_ctx->sap_context->ch_params;
|
|
|
sap_config->sec_ch_freq = ap_ctx->sap_context->sec_ch_freq;
|
|
|
|
|
@@ -2192,6 +2189,14 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
|
|
|
}
|
|
|
hdd_nofl_info("Ap stopped vid %d reason=%d", adapter->vdev_id,
|
|
|
ap_ctx->bss_stop_reason);
|
|
|
+ qdf_status =
|
|
|
+ policy_mgr_get_mac_id_by_session_id(hdd_ctx->psoc,
|
|
|
+ adapter->vdev_id,
|
|
|
+ &pdev_id);
|
|
|
+ if (QDF_IS_STATUS_SUCCESS(qdf_status))
|
|
|
+ hdd_medium_assess_stop_timer(pdev_id, hdd_ctx);
|
|
|
+
|
|
|
+ hdd_medium_assess_deinit();
|
|
|
|
|
|
/* clear the reason code in case BSS is stopped
|
|
|
* in another place
|
|
@@ -2934,15 +2939,6 @@ stopbss:
|
|
|
sap_event->sapevt.sapStopBssCompleteEvent.status ?
|
|
|
"eSAP_STATUS_FAILURE" : "eSAP_STATUS_SUCCESS");
|
|
|
|
|
|
- qdf_status =
|
|
|
- policy_mgr_get_mac_id_by_session_id(hdd_ctx->psoc,
|
|
|
- adapter->vdev_id,
|
|
|
- &pdev_id);
|
|
|
- if (QDF_IS_STATUS_SUCCESS(qdf_status))
|
|
|
- hdd_medium_assess_stop_timer(pdev_id, hdd_ctx);
|
|
|
-
|
|
|
- hdd_medium_assess_deinit();
|
|
|
-
|
|
|
/* Change the BSS state now since, as we are shutting
|
|
|
* things down, we don't want interfaces to become
|
|
|
* re-enabled
|
|
@@ -6706,6 +6702,7 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
|
|
|
hdd_set_connection_in_progress(false);
|
|
|
policy_mgr_process_force_scc_for_nan(hdd_ctx->psoc);
|
|
|
ret = 0;
|
|
|
+ hdd_medium_assess_init();
|
|
|
goto free;
|
|
|
|
|
|
error:
|