qcacmn: Handle special tx descriptor pool cases

Fix the missing special tx descriptor pool cases

Change-Id: Ie6a7539e77b805483c32cb7bcfbc3143f9ef8034
CRs-Fixed: 3610126
This commit is contained in:
Pavankumar Nandeshwar
2023-09-08 08:15:23 -07:00
committed by Rahul Choudhary
parent 3b7d208620
commit a9d8a404fc
7 changed files with 66 additions and 21 deletions

View File

@@ -6249,6 +6249,9 @@ void dp_print_soc_tx_stats(struct dp_soc *soc)
tx_desc_pool = dp_get_tx_desc_pool(soc, desc_pool_id);
soc->stats.tx.desc_in_use +=
tx_desc_pool->num_allocated;
tx_desc_pool = dp_get_spcl_tx_desc_pool(soc, desc_pool_id);
soc->stats.tx.desc_in_use +=
tx_desc_pool->num_allocated;
}
DP_PRINT_STATS("Tx Descriptors In Use = %u",