Преглед на файлове

qcacld-3.0: Set retry flag in frame ctrl in tx data pkts

If the retry count is more than zero then set the retry flag in
frame control of tx data packets in packet capture mode.

Change-Id: Ie1ecfc30c30946d97c92ee2612c825f8d3539f25
CRs-Fixed: 2932130
Surabhi Vishnoi преди 4 години
родител
ревизия
113d7c1019
променени са 1 файла, в които са добавени 3 реда и са изтрити 0 реда
  1. 3 0
      components/pkt_capture/core/src/wlan_pkt_capture_data_txrx.c

+ 3 - 0
components/pkt_capture/core/src/wlan_pkt_capture_data_txrx.c

@@ -1280,6 +1280,9 @@ pkt_capture_tx_data_cb(
 
 			wh->i_fc[1] &= ~IEEE80211_FC1_WEP;
 
+			if (tx_retry_cnt)
+				wh->i_fc[1] |= IEEE80211_FC1_RETRY;
+
 			new_hdsize = sizeof(struct ieee80211_frame);
 
 			if (wh->i_fc[0] & QDF_IEEE80211_FC0_SUBTYPE_QOS) {