소스 검색

qcacmn: multiple update of tid for same ppdu stats

remove multiple update of tid for same ppdu stats.
tid is populated from user rate, completion common and
ack ba status tlv. As tid from ack ba status tlv comes wrong
for non-qos tid. we remove the tid populate in ack ba status tlv.

Change-Id: Ia8b0004fc329bf0fecc1a622e199635034c213a7
nobelj 5 년 전
부모
커밋
c5cb3bf9c5
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      dp/wifi3.0/dp_htt.c

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

@@ -2597,8 +2597,7 @@ static void dp_process_ppdu_stats_user_compltn_ack_ba_status_tlv(
 	ppdu_user_desc->peer_id = peer_id;
 
 	tag_buf++;
-	ppdu_user_desc->tid =
-		HTT_PPDU_STATS_USER_CMPLTN_ACK_BA_STATUS_TLV_TID_NUM_GET(*tag_buf);
+	/* not to update ppdu_desc->tid from this TLV */
 	ppdu_user_desc->num_mpdu =
 		HTT_PPDU_STATS_USER_CMPLTN_ACK_BA_STATUS_TLV_NUM_MPDU_GET(*tag_buf);