qcacld-3.0: Remove redundent logs from the Sta connect req
Remove redundant logs from the Sta connect req. Change-Id: I0b0d455802b0df3509010c31b908737c54a861c7 CRs-Fixed: 2614594
This commit is contained in:
parent
28bba6aaec
commit
ca2ecc8a2a
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
|
* Copyright (c) 2012-2018, 2020 The Linux Foundation. All rights reserved.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for
|
* Permission to use, copy, modify, and/or distribute this software for
|
||||||
* any purpose with or without fee is hereby granted, provided that the
|
* any purpose with or without fee is hereby granted, provided that the
|
||||||
@ -172,8 +172,6 @@ bool ucfg_action_oui_search(struct wlan_objmgr_psoc *psoc,
|
|||||||
struct action_oui_psoc_priv *psoc_priv;
|
struct action_oui_psoc_priv *psoc_priv;
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
ACTION_OUI_ENTER();
|
|
||||||
|
|
||||||
if (!psoc || !attr) {
|
if (!psoc || !attr) {
|
||||||
action_oui_err("Invalid psoc or search attrs");
|
action_oui_err("Invalid psoc or search attrs");
|
||||||
goto exit;
|
goto exit;
|
||||||
@ -191,10 +189,8 @@ bool ucfg_action_oui_search(struct wlan_objmgr_psoc *psoc,
|
|||||||
}
|
}
|
||||||
|
|
||||||
found = action_oui_search(psoc_priv, attr, action_id);
|
found = action_oui_search(psoc_priv, attr, action_id);
|
||||||
if (found)
|
|
||||||
action_oui_debug("Search Successful");
|
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
ACTION_OUI_EXIT();
|
|
||||||
return found;
|
return found;
|
||||||
}
|
}
|
||||||
|
@ -330,10 +330,6 @@ static void lim_post_join_set_link_state_callback(
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
pe_debug("Sessionid %d set link state(%d) cb status: %d",
|
|
||||||
session_entry->peSessionId, session_entry->limMlmState,
|
|
||||||
status);
|
|
||||||
|
|
||||||
if (QDF_IS_STATUS_ERROR(status)) {
|
if (QDF_IS_STATUS_ERROR(status)) {
|
||||||
pe_err("failed to find pe session for session id:%d",
|
pe_err("failed to find pe session for session id:%d",
|
||||||
session_entry->peSessionId);
|
session_entry->peSessionId);
|
||||||
@ -347,12 +343,6 @@ static void lim_post_join_set_link_state_callback(
|
|||||||
session_entry->channelChangeReasonCode =
|
session_entry->channelChangeReasonCode =
|
||||||
LIM_SWITCH_CHANNEL_JOIN;
|
LIM_SWITCH_CHANNEL_JOIN;
|
||||||
session_entry->pLimMlmReassocRetryReq = NULL;
|
session_entry->pLimMlmReassocRetryReq = NULL;
|
||||||
pe_debug("[lim_process_mlm_join_req]: suspend link success(%d) "
|
|
||||||
"on sessionid: %d setting channel to: freq %d with ch_width :%d "
|
|
||||||
"and maxtxPower: %d", status, session_entry->peSessionId,
|
|
||||||
session_entry->curr_op_freq,
|
|
||||||
session_entry->ch_width,
|
|
||||||
session_entry->maxTxPower);
|
|
||||||
lim_send_switch_chnl_params(mac, session_entry);
|
lim_send_switch_chnl_params(mac, session_entry);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -2028,7 +2028,6 @@ void csr_assign_rssi_for_category(struct mac_context *mac, int8_t bestApRssi,
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
sme_debug("best AP RSSI: %d cat offset: %d", bestApRssi, catOffset);
|
|
||||||
if (catOffset) {
|
if (catOffset) {
|
||||||
mac->roam.configParam.bCatRssiOffset = catOffset;
|
mac->roam.configParam.bCatRssiOffset = catOffset;
|
||||||
for (i = 0; i < CSR_NUM_RSSI_CAT; i++) {
|
for (i = 0; i < CSR_NUM_RSSI_CAT; i++) {
|
||||||
@ -2964,46 +2963,6 @@ QDF_STATUS csr_change_default_config_param(struct mac_context *mac,
|
|||||||
!wlan_reg_11d_enabled_on_host(mac->psoc))
|
!wlan_reg_11d_enabled_on_host(mac->psoc))
|
||||||
csr_init_channel_power_list(mac, &pParam->Csr11dinfo);
|
csr_init_channel_power_list(mac, &pParam->Csr11dinfo);
|
||||||
|
|
||||||
sme_debug("neighbor_scan_timer_period: %d",
|
|
||||||
mac->mlme_cfg->lfr.neighbor_scan_timer_period);
|
|
||||||
sme_debug("neighbor_scan_min_timer_period: %d",
|
|
||||||
mac->mlme_cfg->lfr.neighbor_scan_min_timer_period);
|
|
||||||
sme_debug("neighbor_lookup_rssi_threshold: %d",
|
|
||||||
mac->mlme_cfg->lfr.neighbor_lookup_rssi_threshold);
|
|
||||||
sme_debug("opportunistic_scan_threshold_diff: %d",
|
|
||||||
mac->mlme_cfg->lfr.
|
|
||||||
opportunistic_scan_threshold_diff);
|
|
||||||
sme_debug("roam_rescan_rssi_diff: %d",
|
|
||||||
mac->mlme_cfg->lfr.roam_rescan_rssi_diff);
|
|
||||||
sme_debug("neighbor_scan_min_chan_time: %d",
|
|
||||||
mac->mlme_cfg->lfr.neighbor_scan_min_chan_time);
|
|
||||||
sme_debug("neighbor_scan_max_chan_time: %d",
|
|
||||||
mac->mlme_cfg->lfr.neighbor_scan_max_chan_time);
|
|
||||||
sme_debug("neighbor_scan_results_refresh_period: %d",
|
|
||||||
mac->mlme_cfg->lfr.
|
|
||||||
neighbor_scan_results_refresh_period);
|
|
||||||
sme_debug("empty_scan_refresh_period: %d",
|
|
||||||
mac->mlme_cfg->lfr.empty_scan_refresh_period);
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
|
|
||||||
sme_debug("Num of Channels in CFG Channel List: %d",
|
|
||||||
mac->mlme_cfg->lfr.
|
|
||||||
neighbor_scan_channel_list_num);
|
|
||||||
for (i = 0; i < mac->mlme_cfg->lfr.
|
|
||||||
neighbor_scan_channel_list_num; i++) {
|
|
||||||
sme_debug("%d ", mac->mlme_cfg->lfr.
|
|
||||||
neighbor_scan_channel_list[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
sme_debug("roam_bmiss_first_bcnt: %d",
|
|
||||||
mac->mlme_cfg->lfr.roam_bmiss_first_bcnt);
|
|
||||||
sme_debug("roam_bmiss_final_bcnt: %d",
|
|
||||||
mac->mlme_cfg->lfr.roam_bmiss_final_bcnt);
|
|
||||||
sme_debug("roam_beacon_rssi_weight: %d",
|
|
||||||
mac->mlme_cfg->lfr.roam_beacon_rssi_weight);
|
|
||||||
sme_debug("full_scan_period: %u",
|
|
||||||
mac->mlme_cfg->lfr.roam_full_scan_period);
|
|
||||||
mac->scan.fEnableDFSChnlScan = pParam->fEnableDFSChnlScan;
|
mac->scan.fEnableDFSChnlScan = pParam->fEnableDFSChnlScan;
|
||||||
mac->roam.configParam.fScanTwice = pParam->fScanTwice;
|
mac->roam.configParam.fScanTwice = pParam->fScanTwice;
|
||||||
/* This parameter is not available in cfg and not passed from
|
/* This parameter is not available in cfg and not passed from
|
||||||
|
Loading…
Reference in New Issue
Block a user