qcacld-3.0: Reduce excessive logging
Reduce or removed several excessive log in order to avoid spamming dmesg. Change-Id: I818c8f88f66ad11a3c3bc5d5a12799e83c02e5ff CRs-Fixed: 2296680
This commit is contained in:
@@ -229,7 +229,7 @@ static QDF_STATUS pmo_configure_ssdp(struct wlan_objmgr_vdev *vdev)
|
|||||||
vdev_ctx = pmo_vdev_get_priv(vdev);
|
vdev_ctx = pmo_vdev_get_priv(vdev);
|
||||||
|
|
||||||
if (!vdev_ctx->pmo_psoc_ctx->psoc_cfg.ssdp) {
|
if (!vdev_ctx->pmo_psoc_ctx->psoc_cfg.ssdp) {
|
||||||
pmo_err("mDNS, SSDP, LLMNR patterns are disabled from ini");
|
pmo_debug("mDNS, SSDP, LLMNR patterns are disabled from ini");
|
||||||
return QDF_STATUS_SUCCESS;
|
return QDF_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -848,8 +848,9 @@ exit_with_status:
|
|||||||
|
|
||||||
QDF_STATUS cds_enable(struct wlan_objmgr_psoc *psoc)
|
QDF_STATUS cds_enable(struct wlan_objmgr_psoc *psoc)
|
||||||
{
|
{
|
||||||
QDF_STATUS qdf_status = QDF_STATUS_SUCCESS;
|
QDF_STATUS qdf_status;
|
||||||
struct mac_start_params mac_params;
|
struct mac_start_params mac_params;
|
||||||
|
int errno;
|
||||||
|
|
||||||
/* We support only one instance for now ... */
|
/* We support only one instance for now ... */
|
||||||
if (!gp_cds_context) {
|
if (!gp_cds_context) {
|
||||||
@@ -857,23 +858,22 @@ QDF_STATUS cds_enable(struct wlan_objmgr_psoc *psoc)
|
|||||||
return QDF_STATUS_E_FAILURE;
|
return QDF_STATUS_E_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!gp_cds_context->wma_context) ||
|
if (!gp_cds_context->wma_context) {
|
||||||
(gp_cds_context->mac_context == NULL)) {
|
cds_err("WMA NULL context");
|
||||||
if (!gp_cds_context->wma_context)
|
return QDF_STATUS_E_FAILURE;
|
||||||
cds_err("WMA NULL context");
|
}
|
||||||
else
|
|
||||||
cds_err("MAC NULL context");
|
|
||||||
|
|
||||||
|
if (!gp_cds_context->mac_context) {
|
||||||
|
cds_err("MAC NULL context");
|
||||||
return QDF_STATUS_E_FAILURE;
|
return QDF_STATUS_E_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Start the wma */
|
/* Start the wma */
|
||||||
qdf_status = wma_start();
|
qdf_status = wma_start();
|
||||||
if (qdf_status != QDF_STATUS_SUCCESS) {
|
if (qdf_status != QDF_STATUS_SUCCESS) {
|
||||||
cds_err("Failed to start wma");
|
cds_err("Failed to start wma; status:%d", qdf_status);
|
||||||
return QDF_STATUS_E_FAILURE;
|
return QDF_STATUS_E_FAILURE;
|
||||||
}
|
}
|
||||||
cds_info("wma correctly started");
|
|
||||||
|
|
||||||
/* Start the MAC */
|
/* Start the MAC */
|
||||||
qdf_mem_zero(&mac_params, sizeof(mac_params));
|
qdf_mem_zero(&mac_params, sizeof(mac_params));
|
||||||
@@ -881,38 +881,33 @@ QDF_STATUS cds_enable(struct wlan_objmgr_psoc *psoc)
|
|||||||
qdf_status = mac_start(gp_cds_context->mac_context, &mac_params);
|
qdf_status = mac_start(gp_cds_context->mac_context, &mac_params);
|
||||||
|
|
||||||
if (QDF_STATUS_SUCCESS != qdf_status) {
|
if (QDF_STATUS_SUCCESS != qdf_status) {
|
||||||
cds_alert("Failed to start MAC");
|
cds_err("Failed to start MAC; status:%d", qdf_status);
|
||||||
goto err_wma_stop;
|
goto err_wma_stop;
|
||||||
}
|
}
|
||||||
|
|
||||||
cds_info("MAC correctly started");
|
|
||||||
|
|
||||||
/* START SME */
|
/* START SME */
|
||||||
qdf_status = sme_start(gp_cds_context->mac_context);
|
qdf_status = sme_start(gp_cds_context->mac_context);
|
||||||
|
|
||||||
if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
|
if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
|
||||||
cds_alert("Failed to start SME");
|
cds_err("Failed to start SME; status:%d", qdf_status);
|
||||||
goto err_mac_stop;
|
goto err_mac_stop;
|
||||||
}
|
}
|
||||||
|
|
||||||
cds_info("SME correctly started");
|
errno = cdp_soc_attach_target(cds_get_context(QDF_MODULE_ID_SOC));
|
||||||
|
if (errno) {
|
||||||
if (cdp_soc_attach_target(cds_get_context(QDF_MODULE_ID_SOC))) {
|
cds_err("Failed to attach soc target; errno:%d", errno);
|
||||||
cds_alert("Failed to attach soc target");
|
|
||||||
goto err_sme_stop;
|
goto err_sme_stop;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cdp_pdev_attach_target(cds_get_context(QDF_MODULE_ID_SOC),
|
errno = cdp_pdev_attach_target(cds_get_context(QDF_MODULE_ID_SOC),
|
||||||
(struct cdp_pdev *)cds_get_context(QDF_MODULE_ID_TXRX))) {
|
cds_get_context(QDF_MODULE_ID_TXRX));
|
||||||
cds_alert("Failed to attach pdev target");
|
if (errno) {
|
||||||
|
cds_err("Failed to attach pdev target; errno:%d", errno);
|
||||||
goto err_soc_target_detach;
|
goto err_soc_target_detach;
|
||||||
}
|
}
|
||||||
|
|
||||||
cds_info("CDS Start is successful!!");
|
|
||||||
|
|
||||||
qdf_status = dispatcher_psoc_enable(psoc);
|
qdf_status = dispatcher_psoc_enable(psoc);
|
||||||
if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
|
if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
|
||||||
cds_alert("dispatcher_psoc_enable failed");
|
cds_err("dispatcher_psoc_enable failed; status:%d", qdf_status);
|
||||||
goto err_soc_target_detach;
|
goto err_soc_target_detach;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -4118,8 +4118,8 @@ int wlan_hdd_enable_dfs_chan_scan(struct hdd_context *hdd_ctx,
|
|||||||
mac_handle_t mac_handle;
|
mac_handle_t mac_handle;
|
||||||
|
|
||||||
if (enable_dfs_channels == hdd_ctx->config->enableDFSChnlScan) {
|
if (enable_dfs_channels == hdd_ctx->config->enableDFSChnlScan) {
|
||||||
hdd_info("DFS channels are already %s",
|
hdd_debug("DFS channels are already %s",
|
||||||
enable_dfs_channels ? "enabled" : "disabled");
|
enable_dfs_channels ? "enabled" : "disabled");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -10243,9 +10243,8 @@ int hdd_dbs_scan_selection_init(struct hdd_context *hdd_ctx)
|
|||||||
(CDS_DBS_SCAN_PARAM_PER_CLIENT
|
(CDS_DBS_SCAN_PARAM_PER_CLIENT
|
||||||
* CDS_DBS_SCAN_CLIENTS_MAX));
|
* CDS_DBS_SCAN_CLIENTS_MAX));
|
||||||
|
|
||||||
hdd_info("numentries %hu", numentries);
|
|
||||||
if (!numentries) {
|
if (!numentries) {
|
||||||
hdd_info("Donot send scan_selection_config");
|
hdd_debug("Do not send scan_selection_config");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -120,7 +120,7 @@ int hdd_napi_create(void)
|
|||||||
hdd_err("ERR(%d) creating NAPI instances",
|
hdd_err("ERR(%d) creating NAPI instances",
|
||||||
rc);
|
rc);
|
||||||
} else {
|
} else {
|
||||||
hdd_info("napi instances were created. Map=0x%x", rc);
|
hdd_debug("napi instances were created. Map=0x%x", rc);
|
||||||
hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
||||||
if (unlikely(NULL == hdd_ctx)) {
|
if (unlikely(NULL == hdd_ctx)) {
|
||||||
QDF_ASSERT(0);
|
QDF_ASSERT(0);
|
||||||
|
@@ -747,7 +747,7 @@ QDF_STATUS sme_ps_enable_auto_ps_timer(tHalHandle hal_ctx,
|
|||||||
return QDF_STATUS_SUCCESS;
|
return QDF_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
sme_info("Start auto_ps_timer for %d ms", timeout);
|
sme_debug("Start auto_ps_timer for %d ms", timeout);
|
||||||
|
|
||||||
qdf_status = qdf_mc_timer_start(&ps_param->auto_ps_enable_timer,
|
qdf_status = qdf_mc_timer_start(&ps_param->auto_ps_enable_timer,
|
||||||
timeout);
|
timeout);
|
||||||
|
Reference in New Issue
Block a user