Browse Source

qcacld-3.0: Skip TWT responder disable if config is disable

Currently when SAP/GO start, will send WMI to disable TWT responder
every time even TWT responder config is disable, by default TWT
responder is disable in target so don’t have to send every time.

There is requirement to optimize GO start speed, to skip this
redundant WMI command exchange is one of the subtask to achieve it.

Change-Id: Ia0eed17fa548d22207cfc8b3e2127486921c8f47
CRs-Fixed: 3598515
Will Huang 1 năm trước cách đây
mục cha
commit
f3c846b9b2
1 tập tin đã thay đổi với 7 bổ sung1 xóa
  1. 7 1
      core/hdd/src/wlan_hdd_hostapd.c

+ 7 - 1
core/hdd/src/wlan_hdd_hostapd.c

@@ -116,6 +116,7 @@
 #include "wlan_osif_features.h"
 #include "wlan_pre_cac_ucfg_api.h"
 #include <wlan_dp_ucfg_api.h>
+#include "wlan_twt_ucfg_ext_cfg.h"
 #include "wlan_twt_ucfg_ext_api.h"
 #include "wlan_twt_ucfg_api.h"
 #include "wlan_vdev_mgr_ucfg_api.h"
@@ -7657,11 +7658,16 @@ hdd_sap_nan_check_and_disable_unsupported_ndi(struct wlan_objmgr_psoc *psoc,
 void wlan_hdd_configure_twt_responder(struct hdd_context *hdd_ctx,
 				      bool twt_responder)
 {
-	bool twt_res_svc_cap, enable_twt;
+	bool twt_res_svc_cap, enable_twt, twt_res_cfg;
 	uint32_t reason;
 
 	enable_twt = ucfg_twt_cfg_is_twt_enabled(hdd_ctx->psoc);
 	ucfg_twt_get_responder(hdd_ctx->psoc, &twt_res_svc_cap);
+	ucfg_twt_cfg_get_responder(hdd_ctx->psoc, &twt_res_cfg);
+	if (!twt_res_cfg && !twt_responder) {
+		hdd_debug("TWT responder already disable, skip");
+		return;
+	}
 	ucfg_twt_cfg_set_responder(hdd_ctx->psoc,
 				   QDF_MIN(twt_res_svc_cap,
 					   (enable_twt &&