Kaynağa Gözat

qcacld-3.0: Display FW rx_ovfl_errs count in txrx stats

Display FW rx overflow count in txrx stats.

Change-Id: I53afeb03303b8ee0df9d906d7a8de1d916c6c143
CRs-Fixed: 2571542
Nirav Shah 5 yıl önce
ebeveyn
işleme
3c677d7708
1 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. 3 0
      core/dp/htt/htt_fw_stats.c

+ 3 - 0
core/dp/htt/htt_fw_stats.c

@@ -354,6 +354,9 @@ htt_t2h_stats_pdev_stats_print(struct wlan_dbg_stats *wlan_pdev_stats,
 	qdf_nofl_info("phy_errs dropped  :%d", rx->phy_err_drop);
 	/* Number of mpdu errors - FCS, MIC, ENC etc. */
 	qdf_nofl_info("mpdu_errs         :%d", rx->mpdu_errs);
+#if defined(AR900B)
+	qdf_nofl_info("rx_ovfl_errs      :%d", rx->rx_ovfl_errs);
+#endif
 
 }