diff options
| author | Himanshu Agarwal <himanaga@codeaurora.org> | 2017-03-30 19:02:52 +0530 |
|---|---|---|
| committer | Sandeep Puligilla <spuligil@codeaurora.org> | 2017-04-04 15:27:13 -0700 |
| commit | e45bd09706118cde6b29bb2bc66c21da14bedcec (patch) | |
| tree | 11435414a4442af55f17f25d644318872a7a7026 | |
| parent | c466f99c4ac03a9449dbf721aa42465aa15861fb (diff) | |
qcacmn: Reduce log level to avoid watchdog
Reduce log level to info/debug to avoid watchdog bark.
Change-Id: I14a77b9017ada3bc2f10fc78c69cb31b22452052
CRs-Fixed: 2026821
| -rw-r--r-- | hif/src/ce/ce_main.c | 2 | ||||
| -rw-r--r-- | qdf/linux/src/qdf_nbuf.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hif/src/ce/ce_main.c b/hif/src/ce/ce_main.c index acc8c4b0d0b9..2cd0ec6a0bed 100644 --- a/hif/src/ce/ce_main.c +++ b/hif/src/ce/ce_main.c @@ -1679,7 +1679,7 @@ static void hif_post_recv_buffers_failure(struct HIF_CE_pipe_info *pipe_info, qdf_spin_lock_bh(&pipe_info->recv_bufs_needed_lock); error_cnt_tmp = ++(*error_cnt); qdf_spin_unlock_bh(&pipe_info->recv_bufs_needed_lock); - HIF_ERROR("%s: pipe_num %d, needed %d, err_cnt = %u, fail_type = %s", + HIF_DBG("%s: pipe_num %d, needed %d, err_cnt = %u, fail_type = %s", __func__, pipe_info->pipe_num, bufs_needed_tmp, error_cnt_tmp, failure_type_string); hif_record_ce_desc_event(scn, ce_id, failure_type, diff --git a/qdf/linux/src/qdf_nbuf.c b/qdf/linux/src/qdf_nbuf.c index fb2edf3ee547..a4b5341f8525 100644 --- a/qdf/linux/src/qdf_nbuf.c +++ b/qdf/linux/src/qdf_nbuf.c @@ -196,7 +196,7 @@ struct sk_buff *__qdf_nbuf_alloc(qdf_device_t osdev, size_t size, int reserve, skb = dev_alloc_skb(size); if (!skb) { - pr_err("ERROR:NBUF alloc failed\n"); + pr_info("ERROR:NBUF alloc failed\n"); return NULL; } memset(skb->cb, 0x0, sizeof(skb->cb)); |
