diff options
| author | Ratnam Rachuri <c_rrachu@qti.qualcomm.com> | 2016-04-15 17:33:21 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-04-22 10:23:12 +0530 |
| commit | ebe7d0cd760f022bd6b84d74800aad47d1d601c4 (patch) | |
| tree | 3193c667f0546818c6c5bfeeddf48e63407d6897 /CORE/SVC/src | |
| parent | 4dc8a445671a0a2664d4d3a9c5438d7700c9fdcb (diff) | |
qcacld-2.0: Logging level changes on wlan HOST
prima to qcacld-2.0 propagation
As there are a lot of prints dropped on the console in
short duration, it leads to interrupt disablement on
the cpu.
So reducing the logging level of log statement from
ERROR to INFO
Change-Id: I3eefac49378a7bfbcc235b1dd3362e1213fa1f42
CRs-Fixed: 886644
Diffstat (limited to 'CORE/SVC/src')
| -rw-r--r-- | CORE/SVC/src/logging/wlan_logging_sock_svc.c | 6 | ||||
| -rw-r--r-- | CORE/SVC/src/ptt/wlan_ptt_sock_svc.c | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/CORE/SVC/src/logging/wlan_logging_sock_svc.c b/CORE/SVC/src/logging/wlan_logging_sock_svc.c index 08ef067eef73..b458e17fc629 100644 --- a/CORE/SVC/src/logging/wlan_logging_sock_svc.c +++ b/CORE/SVC/src/logging/wlan_logging_sock_svc.c @@ -761,7 +761,6 @@ static int wlan_logging_thread(void *Arg) } if (gwlan_logging.exit) { - pr_err("%s: Exiting the thread\n", __func__); break; } @@ -815,7 +814,6 @@ static int wlan_logging_thread(void *Arg) } } - pr_info("%s: Terminating\n", __func__); complete_and_exit(&gwlan_logging.shutdown_comp, 0); @@ -878,8 +876,6 @@ int wlan_logging_sock_activate_svc(int log_fe_to_console, int num_buf) int i, j, pkt_stats_size; unsigned long irq_flag; - pr_info("%s: Initalizing FEConsoleLog = %d NumBuff = %d\n", - __func__, log_fe_to_console, num_buf); gapp_pid = INVALID_PID; @@ -967,7 +963,6 @@ int wlan_logging_sock_activate_svc(int log_fe_to_console, int num_buf) nl_srv_register(ANI_NL_MSG_LOG, wlan_logging_proc_sock_rx_msg); - pr_info("%s: Activated wlan_logging svc\n", __func__); return 0; err3: @@ -1030,7 +1025,6 @@ int wlan_logging_sock_deactivate_svc(void) vfree(gpkt_stats_buffers); gpkt_stats_buffers = NULL; - pr_info("%s: Deactivate wlan_logging svc\n", __func__); return 0; } diff --git a/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c b/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c index 1338b8f82d81..a96db5833efb 100644 --- a/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c +++ b/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c @@ -135,7 +135,7 @@ static void ptt_sock_proc_reg_req(tAniHdr *wmsg, int radio) if (ptt_sock_send_msg_to_app((tAniHdr *)&rspmsg.wniHdr, radio, ANI_NL_MSG_PUMAC, reg_req->pid) < 0) { - PTT_TRACE(VOS_TRACE_LEVEL_ERROR, "%s: Error sending ANI_MSG_APP_REG_RSP to pid[%d]\n", + PTT_TRACE(VOS_TRACE_LEVEL_INFO, "%s: Error sending ANI_MSG_APP_REG_RSP to pid[%d]\n", __func__, reg_req->pid); } } |
