Parcourir la source

qcacmn: Decrease log level to avoid excessive logging

Change log level from ERROR to DEBUG in function dp_rx_mon_deliver.

CRs-Fixed: 2214694
Change-Id: I1a7fb483beec583c69e5b29c4fabb61e512f6f8f
Lihua Liu il y a 7 ans
Parent
commit
9feb40d5e3
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      dp/wifi3.0/dp_rx_mon_dest.c

+ 2 - 2
dp/wifi3.0/dp_rx_mon_dest.c

@@ -697,7 +697,7 @@ QDF_STATUS dp_rx_mon_deliver(struct dp_soc *soc, uint32_t mac_id,
 		pdev->monitor_vdev->osif_rx_mon(
 				pdev->monitor_vdev->osif_vdev, mon_mpdu, NULL);
 	} else {
-		QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
+		QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
 				  "[%s][%d] mon_mpdu=%p pdev->monitor_vdev %p osif_vdev %p",
 				  __func__, __LINE__, mon_mpdu, pdev->monitor_vdev,
 				  pdev->monitor_vdev->osif_vdev);
@@ -711,7 +711,7 @@ mon_deliver_fail:
 	while (mon_skb) {
 		skb_next = qdf_nbuf_next(mon_skb);
 
-		QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
+		QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
 				  "[%s][%d] mon_skb=%p len %u", __func__, __LINE__,
 				  mon_skb, mon_skb->len);