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
This commit is contained in:
Rakesh Pillai
2020-08-23 21:38:53 +05:30
committed by snandini
parent 0c92795c1c
commit 97fb02b65a

View File

@@ -5969,9 +5969,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);