Parcourir la source

qcacmn: DPT: special packets NULL nbuf argument

For special packets DP tracing enable_check is called with
NULL nbuf, it returned false, preventing special packets from
logging. So ignore NULL nbuf and return true to enable DPT
logging.

Change-Id: Ieccc9e77195f5c8ff590c6964972705c362c16ba
CRs-Fixed: 2335301
Manjunathappa Prakash il y a 6 ans
Parent
commit
ed42ca3f2d
1 fichiers modifiés avec 8 ajouts et 7 suppressions
  1. 8 7
      qdf/linux/src/qdf_trace.c

+ 8 - 7
qdf/linux/src/qdf_trace.c

@@ -1346,17 +1346,18 @@ static bool qdf_dp_enable_check(qdf_nbuf_t nbuf, enum QDF_DP_TRACE_ID code,
 	if (qdf_dp_trace_verbosity_check(code) == false)
 		return false;
 
-	if (!nbuf)
+	if (nbuf && (dir == QDF_TX && ((QDF_NBUF_CB_TX_DP_TRACE(nbuf) == 0) ||
+				       (QDF_NBUF_CB_TX_PACKET_TRACK(nbuf) !=
+					QDF_NBUF_TX_PKT_DATA_TRACK))))
 		return false;
 
-	if ((dir == QDF_TX) &&
-	    ((QDF_NBUF_CB_TX_DP_TRACE(nbuf) == 0) ||
-	     (QDF_NBUF_CB_TX_PACKET_TRACK(nbuf) != QDF_NBUF_TX_PKT_DATA_TRACK)))
-		return false;
-
-	if ((dir == QDF_RX) && (QDF_NBUF_CB_RX_DP_TRACE(nbuf) == 0))
+	if (nbuf && (dir == QDF_RX && (QDF_NBUF_CB_RX_DP_TRACE(nbuf) == 0)))
 		return false;
 
+	/*
+	 * Special packets called with NULL nbuf and this API is expected to
+	 * return true
+	 */
 	return true;
 }