qcacld-3.0: Reduce unwanted netlink log messages

qcacld-2.0 to qcacld-3.0 propagation

Reduce unwanted netlink log messages and modify the error value
print format from hex to decimal.

Change-Id: Ia94efe17b80d5f3c4a7006b914f4f0586360fded
CRs-Fixed: 804176
(cherry picked from commit f986a945d7124c5bcc962dc0b7f0642828b7687f)
This commit is contained in:
Anurag Chouhan
2016-09-03 16:19:33 +05:30
committed by qcabuildsw
parent 43e0c7541b
commit 1a77236aa5
3 changed files with 9 additions and 7 deletions

View File

@@ -147,11 +147,12 @@ static int wlan_send_sock_msg_to_app(tAniHdr *wmsg, int radio,
wnl = (tAniNlHdr *) nlh; wnl = (tAniNlHdr *) nlh;
wnl->radio = radio; wnl->radio = radio;
memcpy(&wnl->wmsg, wmsg, wmsg_length); memcpy(&wnl->wmsg, wmsg, wmsg_length);
LOGGING_TRACE(QDF_TRACE_LEVEL_INFO,
"%s: Sending Msg Type [0x%X] to pid[%d]\n",
__func__, be16_to_cpu(wmsg->type), pid);
err = nl_srv_ucast(skb, pid, MSG_DONTWAIT); err = nl_srv_ucast(skb, pid, MSG_DONTWAIT);
if (err)
LOGGING_TRACE(QDF_TRACE_LEVEL_INFO,
"%s: Failed sending Msg Type [0x%X] to pid[%d]\n",
__func__, wmsg->type, pid);
return err; return err;
} }

View File

@@ -352,7 +352,7 @@ int nl_srv_ucast(struct sk_buff *skb, int dst_pid, int flag)
if (err < 0) if (err < 0)
QDF_TRACE(QDF_MODULE_ID_HDD, QDF_TRACE_LEVEL_WARN, QDF_TRACE(QDF_MODULE_ID_HDD, QDF_TRACE_LEVEL_WARN,
"NLINK: netlink_unicast to pid[%d] failed, ret[0x%X]", "NLINK: netlink_unicast to pid[%d] failed, ret[%d]",
dst_pid, err); dst_pid, err);
return err; return err;

View File

@@ -116,9 +116,6 @@ int ptt_sock_send_msg_to_app(tAniHdr *wmsg, int radio, int src_mod, int pid)
wnl = (tAniNlHdr *) nlh; wnl = (tAniNlHdr *) nlh;
wnl->radio = radio; wnl->radio = radio;
memcpy(&wnl->wmsg, wmsg, wmsg_length); memcpy(&wnl->wmsg, wmsg, wmsg_length);
PTT_TRACE(QDF_TRACE_LEVEL_INFO,
"%s: Sending Msg Type [0x%X] to pid[%d]\n", __func__,
be16_to_cpu(wmsg->type), pid);
#ifdef PTT_SOCK_DEBUG_VERBOSE #ifdef PTT_SOCK_DEBUG_VERBOSE
ptt_sock_dump_buf((const unsigned char *)skb->data, skb->len); ptt_sock_dump_buf((const unsigned char *)skb->data, skb->len);
#endif #endif
@@ -128,6 +125,10 @@ int ptt_sock_send_msg_to_app(tAniHdr *wmsg, int radio, int src_mod, int pid)
else else
err = nl_srv_bcast(skb); err = nl_srv_bcast(skb);
if (err)
PTT_TRACE(QDF_TRACE_LEVEL_INFO,
"%s:Failed sending Msg Type [0x%X] to pid[%d]\n",
__func__, be16_to_cpu(wmsg->type), pid);
return err; return err;
} }