Ver código fonte

qcacmn: Remove false assert during cleanup in STA mode

During cleanup path in STA mode, remove false assert as there is just self
dp_peer with no TX and RX TIDS setup.

Change-Id: Id6be7a6b3823c41ddbff67926bda240a4e9b6bd0
CRs-Fixed: 2547680
Saket Jha 5 anos atrás
pai
commit
8ce125ec51
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      dp/wifi3.0/dp_rx_defrag.c

+ 2 - 1
dp/wifi3.0/dp_rx_defrag.c

@@ -1335,7 +1335,8 @@ void dp_rx_defrag_cleanup(struct dp_peer *peer, unsigned tid)
 		 * array pointer usually points to base variable
 		 * of TID queue structure: "struct dp_rx_tid"
 		 */
-		QDF_ASSERT(0);
+		dp_info("Cleanup self peer %pK and TID %u at MAC address %pM",
+			peer, tid, peer->mac_addr.raw);
 		return;
 	}
 	/* Free up nbufs */