|
@@ -12833,7 +12833,6 @@ void csr_roam_check_for_link_status_change(struct mac_context *mac,
|
|
|
csr_roam_chk_lnk_max_assoc_exceeded(mac, pSirMsg);
|
|
|
break;
|
|
|
case eWNI_SME_CANDIDATE_FOUND_IND:
|
|
|
- sme_debug("Candidate found indication from PE");
|
|
|
csr_neighbor_roam_candidate_found_ind_hdlr(mac, pSirMsg);
|
|
|
break;
|
|
|
case eWNI_SME_HANDOFF_REQ:
|
|
@@ -20427,8 +20426,7 @@ void csr_process_ho_fail_ind(struct mac_context *mac_ctx, void *msg_buf)
|
|
|
uint32_t sessionId;
|
|
|
|
|
|
if (!pSmeHOFailInd) {
|
|
|
- QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
|
|
|
- "LFR3: Hand-Off Failure Ind is NULL");
|
|
|
+ sme_err("LFR3: Hand-Off Failure Ind is NULL");
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -20436,9 +20434,8 @@ void csr_process_ho_fail_ind(struct mac_context *mac_ctx, void *msg_buf)
|
|
|
|
|
|
/* Roaming is supported only on Infra STA Mode. */
|
|
|
if (!csr_roam_is_sta_mode(mac_ctx, sessionId)) {
|
|
|
- QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
|
|
|
- "LFR3:HO Fail cannot be handled for session %d",
|
|
|
- sessionId);
|
|
|
+ sme_err("LFR3:HO Fail cannot be handled for session %d",
|
|
|
+ sessionId);
|
|
|
return;
|
|
|
}
|
|
|
mac_ctx->sme.set_connection_info_cb(false);
|
|
@@ -20449,8 +20446,6 @@ void csr_process_ho_fail_ind(struct mac_context *mac_ctx, void *msg_buf)
|
|
|
csr_roam_synch_clean_up(mac_ctx, sessionId);
|
|
|
csr_roaming_report_diag_event(mac_ctx, NULL,
|
|
|
eCSR_REASON_ROAM_HO_FAIL);
|
|
|
- QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
|
|
|
- "LFR3:Issue Disconnect on session %d", sessionId);
|
|
|
csr_roam_disconnect(mac_ctx, sessionId,
|
|
|
eCSR_DISCONNECT_REASON_ROAM_HO_FAIL,
|
|
|
eSIR_MAC_FW_TRIGGERED_ROAM_FAILURE);
|
|
@@ -21351,7 +21346,7 @@ static QDF_STATUS csr_process_roam_sync_callback(struct mac_context *mac_ctx,
|
|
|
goto end;
|
|
|
case SIR_ROAMING_INVOKE_FAIL:
|
|
|
sme_debug("Roaming triggered failed source %d nud behaviour %d",
|
|
|
- vdev_roam_params->source, mac_ctx->nud_fail_behaviour);
|
|
|
+ vdev_roam_params->source, mac_ctx->nud_fail_behaviour);
|
|
|
if (vdev_roam_params->source == USERSPACE_INITIATED ||
|
|
|
mac_ctx->nud_fail_behaviour == DISCONNECT_AFTER_ROAM_FAIL) {
|
|
|
/* Userspace roam req fail, disconnect with AP */
|
|
@@ -21426,12 +21421,10 @@ static QDF_STATUS csr_process_roam_sync_callback(struct mac_context *mac_ctx,
|
|
|
vdev_roam_params->roam_invoke_in_progress = false;
|
|
|
goto end;
|
|
|
case SIR_ROAMING_DEAUTH:
|
|
|
- sme_debug("LFR3: callback reason %d", reason);
|
|
|
csr_roam_roaming_offload_timer_action(
|
|
|
mac_ctx, 0, session_id, ROAMING_OFFLOAD_TIMER_STOP);
|
|
|
goto end;
|
|
|
default:
|
|
|
- sme_debug("LFR3: callback reason %d", reason);
|
|
|
status = QDF_STATUS_E_FAILURE;
|
|
|
goto end;
|
|
|
}
|