Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8ca3f8e7 authored by Rakesh Pillai's avatar Rakesh Pillai Committed by snandini
Browse files

qcacmn: Fix the stale and invalid cookie logging

Currently the stale cookie and invalid cookie
counters are being logged inter-changeably.

Fix the logging for stale and invalid cookie counter.

Change-Id: I43346fe961ee750a3baa1bf8c2da2551fb06e973
CRs-Fixed: 2770877
parent 445c5c81
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5539,9 +5539,9 @@ void dp_txrx_path_stats(struct dp_soc *soc)
			       pdev->soc->stats.rx.err.defrag_peer_uninit);
		DP_PRINT_STATS("pkts delivered no peer %u",
			       pdev->soc->stats.rx.err.pkt_delivered_no_peer);
		DP_PRINT_STATS("RX stale cookie: %d",
			       soc->stats.rx.err.invalid_cookie);
		DP_PRINT_STATS("RX invalid cookie: %d",
			       soc->stats.rx.err.invalid_cookie);
		DP_PRINT_STATS("RX stale cookie: %d",
			       soc->stats.rx.err.stale_cookie);
		DP_PRINT_STATS("2k jump delba sent: %u",
			       pdev->soc->stats.rx.err.rx_2k_jump_delba_sent);