Browse Source

qcacmn: degrade log level when dump rx data TLV

currently host will dump TLV with info level if HW indicate RX
data with invalid sw_peer_id, this will introduce excessive logging
issue, host panic.

degrade the log level to debug level.

Change-Id: Ia24f411bdfd9ec8e315874340d3bf046c245a72b
CRs-Fixed: 2420640
Jinwei Chen 6 years ago
parent
commit
2f79dd975f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dp/wifi3.0/dp_rx_err.c

+ 1 - 1
dp/wifi3.0/dp_rx_err.c

@@ -599,7 +599,7 @@ dp_rx_null_q_handle_invalid_peer_id_exception(struct dp_soc *soc,
 	if (peer) {
 		dp_verbose_debug("MPDU sw_peer_id & ast_idx is corrupted");
 		hal_rx_dump_pkt_tlvs(soc->hal_soc, rx_tlv_hdr,
-				     QDF_TRACE_LEVEL_INFO);
+				     QDF_TRACE_LEVEL_DEBUG);
 		DP_STATS_INC_PKT(soc, rx.err.rx_invalid_peer_id,
 				 1, qdf_nbuf_len(nbuf));
 		qdf_nbuf_free(nbuf);