소스 검색

qcacmn: Use MSDU indications to update Tx byte counters

Byte counts reported in HTT Tx PPDU indications is sum of MPDU bytes
(including the 802.11 header).In Rx, we derive byte count from per-MSDU
Rx indications and this does not include 802.11 header bytes.
This is causing mismatch in reporting of Tx and Rx byte counts.
Also PPDU TLV for mcast MPDUs is not giving correct multicast bytes count.

Move the byte count update for Tx also to per-MSDU indications to match
the behavior with Rx

CRs-Fixed: 2182576
Change-Id: I92e779661014b058ba98c830881ff8eded4ea6ff
Pamidipati, Vijay 7 년 전
부모
커밋
87a93cf03a
2개의 변경된 파일14개의 추가작업 그리고 22개의 파일을 삭제
  1. 1 13
      dp/wifi3.0/dp_htt.c
  2. 13 9
      dp/wifi3.0/dp_tx.c

+ 1 - 13
dp/wifi3.0/dp_htt.c

@@ -86,20 +86,8 @@ static void dp_tx_stats_update(struct dp_soc *soc, struct dp_peer *peer,
 	DP_STATS_INC(peer, tx.wme_ac_type[TID_TO_WME_AC(ppdu->tid)], num_msdu);
 	DP_STATS_INCC(peer, tx.stbc, num_msdu, ppdu->stbc);
 	DP_STATS_INCC(peer, tx.ldpc, num_msdu, ppdu->ldpc);
-	DP_STATS_INC_PKT(peer, tx.tx_success, ppdu->success_msdus,
-			ppdu->success_bytes);
-
-	if (ppdu->is_mcast) {
-		DP_STATS_INC_PKT(peer, tx.mcast, ppdu->mpdu_tried_mcast,
-					(ppdu->success_bytes
-					+ ppdu->retry_bytes +
-					ppdu->failed_bytes));
-	} else {
+	if (!(ppdu->is_mcast))
 		DP_STATS_UPD(peer, tx.last_ack_rssi, ack_rssi);
-		DP_STATS_INC_PKT(peer, tx.ucast, num_msdu, (ppdu->success_bytes
-					+ ppdu->retry_bytes +
-					ppdu->failed_bytes));
-	}
 
 	DP_STATS_INC(peer, tx.retries,
 			(ppdu->long_retries + ppdu->short_retries));

+ 13 - 9
dp/wifi3.0/dp_tx.c

@@ -2521,12 +2521,19 @@ static void dp_tx_update_peer_stats(struct dp_peer *peer,
 	mcs = ts->mcs;
 	pkt_type = ts->pkt_type;
 
-
 	if (!ts->release_src == HAL_TX_COMP_RELEASE_SOURCE_TQM)
 		return;
 
+	if (peer->bss_peer) {
+		DP_STATS_INC_PKT(peer, tx.mcast, 1, length);
+		DP_STATS_INC_PKT(peer, tx.tx_success, 1, length);
+	} else {
+		if (ts->status == HAL_TX_TQM_RR_FRAME_ACKED) {
+			DP_STATS_INC_PKT(peer, tx.ucast, 1, length);
+			DP_STATS_INC_PKT(peer, tx.tx_success, 1, length);
+		}
+	}
 
-	DP_STATS_INC_PKT(peer, tx.comp_pkt, 1, length);
 	DP_STATS_INCC(peer, tx.dropped.age_out, 1,
 			(ts->status == HAL_TX_TQM_RR_REM_CMD_AGED));
 
@@ -2610,7 +2617,6 @@ static inline void dp_tx_comp_process_tx_status(struct dp_tx_desc_s *tx_desc,
 	struct dp_peer *peer = NULL;
 	struct ether_header *eh =
 		(struct ether_header *)qdf_nbuf_data(tx_desc->nbuf);
-	bool isBroadcast;
 
 	hal_tx_comp_get_status(&tx_desc->comp, &ts);
 
@@ -2668,13 +2674,11 @@ static inline void dp_tx_comp_process_tx_status(struct dp_tx_desc_s *tx_desc,
 		DP_STATS_INC_PKT(soc, tx.tx_invalid_peer, 1, length);
 		goto out;
 	}
-	if (qdf_likely(vdev->tx_encap_type == htt_cmn_pkt_type_ethernet)) {
-		isBroadcast = (IEEE80211_IS_BROADCAST(eh->ether_dhost)) ? 1 : 0 ;
 
-		if (isBroadcast) {
-			DP_STATS_INC_PKT(peer, tx.bcast, 1,
-					qdf_nbuf_len(tx_desc->nbuf));
-		}
+	if (qdf_likely(peer->vdev->tx_encap_type ==
+				htt_cmn_pkt_type_ethernet)) {
+		if (peer->bss_peer && IEEE80211_IS_BROADCAST(eh->ether_dhost))
+			DP_STATS_INC_PKT(peer, tx.bcast, 1, length);
 	}
 
 	dp_tx_update_peer_stats(peer, &ts, length);