Sfoglia il codice sorgente

qcacld-3.0: Set twt ext_conf_present to true in disable cmd

In SAP+STA DBS case, STA twt session gets teardown when SAP
becomes active. This is because ext_conf_present is set as false
in both req/res disable api due to which
TWT_EN_DIS_FLAGS_SET_SPLIT_CONFIG, TWT_EN_DIS_FLAGS_SET_REQ_RESP,
and TWT_EN_DIS_FLAGS_SET_I_B_TWT becomes 0 and sends disable cmd
for both req/res in firmware.

As part of fix, set twt ext_conf_present as true so that disable
cmd will be send based on role.

Change-Id: I64c8c30af3eef22c75e29de5f674630d091fda04
CRs-Fixed: 3048284
Jyoti Kumari 3 anni fa
parent
commit
14f24434c6
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      core/hdd/src/wlan_hdd_twt.c

+ 2 - 2
core/hdd/src/wlan_hdd_twt.c

@@ -4214,7 +4214,7 @@ QDF_STATUS hdd_send_twt_requestor_disable_cmd(struct hdd_context *hdd_ctx)
 	*/
 	twt_en_dis.role = WMI_TWT_ROLE_REQUESTOR;
 	hdd_ctx->twt_state = TWT_DISABLE_REQUESTED;
-	twt_en_dis.ext_conf_present = false;
+	twt_en_dis.ext_conf_present = true;
 	qdf_event_reset(&hdd_ctx->twt_disable_comp_evt);
 	wma_send_twt_disable_cmd(pdev_id, &twt_en_dis);
 
@@ -4247,7 +4247,7 @@ QDF_STATUS hdd_send_twt_responder_disable_cmd(struct hdd_context *hdd_ctx)
 	*/
 	twt_en_dis.role = WMI_TWT_ROLE_RESPONDER;
 	hdd_ctx->twt_state = TWT_DISABLE_REQUESTED;
-	twt_en_dis.ext_conf_present = false;
+	twt_en_dis.ext_conf_present = true;
 	qdf_event_reset(&hdd_ctx->twt_disable_comp_evt);
 	wma_send_twt_disable_cmd(pdev_id, &twt_en_dis);