qcacld-3.0: Reduce log messages during scanning

Excessive logging during scan causes the watchdog timeout
hence reduce the log messages in the scan path

Change-Id: I378e9667dfad15cfd5ba1c68484b97567af5d45f
CRs-Fixed: 2079149
This commit is contained in:
Kiran Kumar Lokere
2017-10-10 18:06:58 -07:00
committad av Nandini Suresh
förälder b4c2996223
incheckning 9471221c04
2 ändrade filer med 1 tillägg och 5 borttagningar

Visa fil

@@ -2504,8 +2504,6 @@ tSirRetStatus sir_convert_probe_frame2_struct(tpAniSirGlobal pMac,
if (pr->WMMParams.present) { if (pr->WMMParams.present) {
pProbeResp->wmeEdcaPresent = 1; pProbeResp->wmeEdcaPresent = 1;
convert_wmm_params(pMac, &pProbeResp->edcaParams, &pr->WMMParams); convert_wmm_params(pMac, &pProbeResp->edcaParams, &pr->WMMParams);
pe_debug("WMM Parameter present in Probe Response Frame!");
__print_wmm_params(pMac, &pr->WMMParams);
} }
if (pr->WMMInfoAp.present) { if (pr->WMMInfoAp.present) {
@@ -4118,8 +4116,6 @@ sir_convert_beacon_frame2_struct(tpAniSirGlobal pMac,
pBeaconStruct->wmeEdcaPresent = 1; pBeaconStruct->wmeEdcaPresent = 1;
convert_wmm_params(pMac, &pBeaconStruct->edcaParams, convert_wmm_params(pMac, &pBeaconStruct->edcaParams,
&pBeacon->WMMParams); &pBeacon->WMMParams);
pe_debug("WMM Parameter present in Beacon Frame!");
__print_wmm_params(pMac, &pBeacon->WMMParams);
} }
if (pBeacon->WMMInfoAp.present) { if (pBeacon->WMMInfoAp.present) {

Visa fil

@@ -213,7 +213,7 @@ QDF_STATUS wlansap_context_get(struct sap_context *ctx)
} }
qdf_mutex_release(&sap_context_lock); qdf_mutex_release(&sap_context_lock);
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR, QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_DEBUG,
"%s: sap session is not valid", __func__); "%s: sap session is not valid", __func__);
return QDF_STATUS_E_FAILURE; return QDF_STATUS_E_FAILURE;
} }