Explorar o código

qcacmn: Reduce excessive log and advance error processing

Reduce the excessive loging incase dup detect and advance rx processing
to handle next ring entry.

Change-Id: I1d6e8aa28045ed12dd6d315169483ca56d2c6972
CRs-Fixed: 2489205
Manjunathappa Prakash %!s(int64=5) %!d(string=hai) anos
pai
achega
5f1b698282
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      dp/wifi3.0/dp_rx.c

+ 3 - 1
dp/wifi3.0/dp_rx.c

@@ -1727,10 +1727,12 @@ more_data:
 		 */
 		if (qdf_unlikely(!rx_desc->in_use)) {
 			DP_STATS_INC(soc, rx.err.hal_reo_dest_dup, 1);
-			dp_err("Reaping rx_desc not in use!");
+			dp_info_rl("Reaping rx_desc not in use!");
 			dp_rx_dump_info_and_assert(soc, hal_ring,
 						   ring_desc, rx_desc);
 			/* ignore duplicate RX desc and continue to process */
+			/* Pop out the descriptor */
+			hal_srng_dst_get_next(hal_soc, hal_ring);
 			continue;
 		}