Browse Source

qcacmn: Fix tx completion stats for mesh

Enabled tx completion stats for mesh vdev irrespective of process_tx_status
of soc.

Change-Id: I46b3550b6433b354ec89da3628668befe7e55f83
CRs-Fixed: 2003389
Venkateswara Swamy Bandaru 8 years ago
parent
commit
3e5e077d52
1 changed files with 2 additions and 1 deletions
  1. 2 1
      dp/wifi3.0/dp_tx.c

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

@@ -1272,7 +1272,8 @@ static void dp_tx_comp_process_desc(struct dp_soc *soc,
 		}
 
 		/* Process Tx status in descriptor */
-		if (soc->process_tx_status)
+		if (soc->process_tx_status ||
+				(desc->vdev && desc->vdev->mesh_vdev))
 			dp_tx_comp_process_tx_status(desc);
 
 		/* 0 : MSDU buffer, 1 : MLE */