|
@@ -2400,10 +2400,8 @@ static QDF_STATUS sap_fsm_handle_radar_during_cac(struct sap_context *sap_ctx,
|
|
|
mac_ctx->sap.sapCtxList[intf].sapPersona)) &&
|
|
|
t_sap_ctx && t_sap_ctx->fsm_state != SAP_INIT) {
|
|
|
profile = &t_sap_ctx->csr_roamProfile;
|
|
|
- if (!wlan_reg_is_passive_or_disable_ch(
|
|
|
- mac_ctx->pdev,
|
|
|
- wlan_reg_freq_to_chan(mac_ctx->pdev,
|
|
|
- profile->op_freq)))
|
|
|
+ if (!wlan_reg_is_passive_or_disable_for_freq(
|
|
|
+ mac_ctx->pdev, profile->op_freq))
|
|
|
continue;
|
|
|
t_sap_ctx->is_chan_change_inprogress = true;
|
|
|
/*
|
|
@@ -2765,16 +2763,19 @@ static QDF_STATUS sap_fsm_state_started(struct sap_context *sap_ctx,
|
|
|
* no need to move them
|
|
|
*/
|
|
|
profile = &temp_sap_ctx->csr_roamProfile;
|
|
|
- if (!wlan_reg_is_passive_or_disable_ch(
|
|
|
- mac_ctx->pdev,
|
|
|
- wlan_reg_freq_to_chan(
|
|
|
- mac_ctx->pdev,
|
|
|
- profile->op_freq)))
|
|
|
+ if (!wlan_reg_is_passive_or_disable_for_freq(
|
|
|
+ mac_ctx->pdev, profile->op_freq)) {
|
|
|
+ sap_debug("vdev %d freq %d (state %d) is not DFS or disabled so continue",
|
|
|
+ temp_sap_ctx->sessionId,
|
|
|
+ profile->op_freq,
|
|
|
+ wlan_reg_get_channel_state_for_freq(mac_ctx->pdev,
|
|
|
+ profile->op_freq));
|
|
|
continue;
|
|
|
- QDF_TRACE(QDF_MODULE_ID_SAP,
|
|
|
- QDF_TRACE_LEVEL_INFO_MED,
|
|
|
- FL("sapdfs: Sending CSAIE for sapctx[%pK]"),
|
|
|
- temp_sap_ctx);
|
|
|
+ }
|
|
|
+ sap_debug("vdev %d switch freq %d -> %d",
|
|
|
+ temp_sap_ctx->sessionId,
|
|
|
+ profile->op_freq,
|
|
|
+ mac_ctx->sap.SapDfsInfo.target_chan_freq);
|
|
|
qdf_status =
|
|
|
sap_fsm_send_csa_restart_req(mac_ctx,
|
|
|
temp_sap_ctx);
|