Parcourir la source

qcacld-3.0: Fix DHCP indication to FW feature in SAP for HL

In case of HL, send tx completion bit in HTT tx descriptor
to receive tx completion from FW and disable DHCP indication
to FW properly.

Change-Id: Iff8e0c1f5d95c4f62af8b498552d92b57006969c
CRS-Fixed: 2506011
Nirav Shah il y a 5 ans
Parent
commit
7f37dbea19
1 fichiers modifiés avec 9 ajouts et 1 suppressions
  1. 9 1
      core/dp/txrx/ol_tx_hl.c

+ 9 - 1
core/dp/txrx/ol_tx_hl.c

@@ -582,7 +582,15 @@ ol_tx_hl_base(
 			tx_msdu_info.htt.info.vdev_id = vdev->vdev_id;
 			tx_msdu_info.htt.info.frame_type = htt_frm_type_data;
 			tx_msdu_info.htt.info.l2_hdr_type = pdev->htt_pkt_type;
-			tx_msdu_info.htt.action.tx_comp_req = tx_comp_req;
+
+			if (QDF_NBUF_CB_TX_EXTRA_FRAG_FLAGS_NOTIFY_COMP(msdu)
+									== 1) {
+				tx_msdu_info.htt.action.tx_comp_req = 1;
+				tx_desc->pkt_type = OL_TX_FRM_NO_FREE;
+			} else {
+				tx_msdu_info.htt.action.tx_comp_req =
+								tx_comp_req;
+			}
 
 			/* If the vdev is in OCB mode,
 			 * parse the tx control header.