qcacld-3.0: Optimize LFR logs
Optimize LFR3 logs. Change-Id: I13067dfa504dd9310eff48b138916da2791cb270 CRs-Fixed: 2643684
This commit is contained in:

committed by
nshrivas

orang tua
de142f1e10
melakukan
6236deab41
@@ -2117,8 +2117,6 @@ QDF_STATUS sme_process_msg(struct mac_context *mac, struct scheduler_msg *pMsg)
|
||||
switch (pMsg->type) {
|
||||
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
|
||||
case eWNI_SME_HO_FAIL_IND:
|
||||
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
|
||||
FL("LFR3: Rcvd eWNI_SME_HO_FAIL_IND"));
|
||||
csr_process_ho_fail_ind(mac, pMsg->bodyptr);
|
||||
qdf_mem_free(pMsg->bodyptr);
|
||||
break;
|
||||
|
@@ -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;
|
||||
}
|
||||
|
@@ -422,8 +422,6 @@ QDF_STATUS csr_neighbor_roam_candidate_found_ind_hdlr(struct mac_context *mac,
|
||||
&mac->roam.neighborRoamInfo[sessionId];
|
||||
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
||||
|
||||
sme_debug("Received indication from firmware");
|
||||
|
||||
/* we must be in connected state, if not ignore it */
|
||||
if ((eCSR_NEIGHBOR_ROAM_STATE_CONNECTED !=
|
||||
pNeighborRoamInfo->neighborRoamState)
|
||||
|
@@ -307,7 +307,7 @@ wma_beacon_swba_handler(void *handle, uint8_t *event, uint32_t len)
|
||||
|
||||
#ifdef FEATURE_WLAN_DIAG_SUPPORT
|
||||
void wma_sta_kickout_event(uint32_t kickout_reason, uint8_t vdev_id,
|
||||
uint8_t *macaddr)
|
||||
uint8_t *macaddr)
|
||||
{
|
||||
WLAN_HOST_DIAG_EVENT_DEF(sta_kickout, struct host_event_wlan_kickout);
|
||||
qdf_mem_zero(&sta_kickout, sizeof(sta_kickout));
|
||||
@@ -315,7 +315,7 @@ void wma_sta_kickout_event(uint32_t kickout_reason, uint8_t vdev_id,
|
||||
sta_kickout.vdev_id = vdev_id;
|
||||
if (macaddr)
|
||||
qdf_mem_copy(sta_kickout.peer_mac, macaddr,
|
||||
QDF_MAC_ADDR_SIZE);
|
||||
QDF_MAC_ADDR_SIZE);
|
||||
WLAN_HOST_DIAG_EVENT_REPORT(&sta_kickout, EVENT_WLAN_STA_KICKOUT);
|
||||
}
|
||||
#endif
|
||||
|
@@ -2817,7 +2817,7 @@ int wma_mlme_roam_synch_event_handler_cb(void *handle, uint8_t *event,
|
||||
A_UINT32 reassoc_rsp_len;
|
||||
A_UINT32 reassoc_req_len;
|
||||
|
||||
WMA_LOGD("LFR3:%s", __func__);
|
||||
WMA_LOGD("LFR3: Received WMA_ROAM_OFFLOAD_SYNCH_IND");
|
||||
if (!event) {
|
||||
WMA_LOGE("%s: event param null", __func__);
|
||||
goto cleanup_label;
|
||||
@@ -2875,7 +2875,6 @@ int wma_mlme_roam_synch_event_handler_cb(void *handle, uint8_t *event,
|
||||
__func__);
|
||||
goto cleanup_label;
|
||||
}
|
||||
WMA_LOGD("LFR3: Received WMA_ROAM_OFFLOAD_SYNCH_IND");
|
||||
|
||||
/*
|
||||
* All below length fields are unsigned and hence positive numbers.
|
||||
@@ -2940,11 +2939,6 @@ int wma_mlme_roam_synch_event_handler_cb(void *handle, uint8_t *event,
|
||||
roam_synch_data_len += sizeof(struct roam_offload_synch_ind);
|
||||
}
|
||||
|
||||
WMA_LOGD("synch payload: LEN bcn:%d, req:%d, rsp:%d",
|
||||
bcn_probe_rsp_len,
|
||||
reassoc_req_len,
|
||||
reassoc_rsp_len);
|
||||
|
||||
cds_host_diag_log_work(&wma->roam_ho_wl,
|
||||
WMA_ROAM_HO_WAKE_LOCK_DURATION,
|
||||
WIFI_POWER_EVENT_WAKELOCK_WOW);
|
||||
@@ -3033,6 +3027,9 @@ cleanup_label:
|
||||
roam_req->Command = ROAM_SCAN_OFFLOAD_STOP;
|
||||
roam_req->reason = REASON_ROAM_SYNCH_FAILED;
|
||||
roam_req->sessionId = synch_event->vdev_id;
|
||||
wma_debug("In cleanup: RSO Command:%d, reason %d vdev %d",
|
||||
roam_req->Command, roam_req->reason,
|
||||
roam_req->sessionId);
|
||||
wma_process_roaming_config(wma, roam_req);
|
||||
}
|
||||
}
|
||||
@@ -6053,7 +6050,6 @@ int wma_roam_event_callback(WMA_HANDLE handle, uint8_t *event_buf,
|
||||
case WMI_ROAM_REASON_DEAUTH:
|
||||
WMA_LOGD("%s: Received disconnect roam event reason:%d",
|
||||
__func__, wmi_event->notif_params);
|
||||
|
||||
if (wmi_event->notif_params1)
|
||||
frame = param_buf->deauth_disassoc_frame;
|
||||
wma_handle->pe_disconnect_cb(wma_handle->mac_context,
|
||||
|
@@ -592,9 +592,6 @@ void wma_lost_link_info_handler(tp_wma_handle wma, uint32_t vdev_id,
|
||||
sme_msg.type = eWNI_SME_LOST_LINK_INFO_IND;
|
||||
sme_msg.bodyptr = lost_link_info;
|
||||
sme_msg.bodyval = 0;
|
||||
WMA_LOGD("%s: post msg to SME, bss_idx %d, rssi %d", __func__,
|
||||
lost_link_info->vdev_id, lost_link_info->rssi);
|
||||
|
||||
qdf_status = scheduler_post_message(QDF_MODULE_ID_WMA,
|
||||
QDF_MODULE_ID_SME,
|
||||
QDF_MODULE_ID_SME,
|
||||
|
Reference in New Issue
Block a user