فهرست منبع

qcacld-3.0: Do not send enable TDLS in case of DBS

Currently, TDLS set state command is sent to FW after any session
decrement without checking the HW mode is DBS. This can lead to
FW assert.

Check for HW mode before enabling TDLS in FW.

Change-Id: I70d5ba15c9b891f5d9b411960d51d684105061e8
CRs-Fixed: 2530773
Bala Venkatesh 5 سال پیش
والد
کامیت
ab30be31ba
2فایلهای تغییر یافته به همراه8 افزوده شده و 1 حذف شده
  1. 3 0
      components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c
  2. 5 1
      components/tdls/core/src/wlan_tdls_main.c

+ 3 - 0
components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

@@ -984,6 +984,9 @@ void policy_mgr_pdev_set_hw_mode_cb(uint32_t status,
 	ret = policy_mgr_set_connection_update(context);
 	if (!QDF_IS_STATUS_SUCCESS(ret))
 		policy_mgr_err("ERROR: set connection_update_done event failed");
+	/* Notify tdls */
+	if (pm_ctx->tdls_cbacks.tdls_notify_decrement_session)
+		pm_ctx->tdls_cbacks.tdls_notify_decrement_session(pm_ctx->psoc);
 
 	if (PM_NOP != next_action)
 		policy_mgr_next_actions(context, session_id,

+ 5 - 1
components/tdls/core/src/wlan_tdls_main.c

@@ -988,7 +988,11 @@ tdls_process_decrement_active_session(struct wlan_objmgr_psoc *psoc)
 	tdls_debug("Enter");
 	if (!psoc)
 		return QDF_STATUS_E_NULL_VALUE;
-
+	if(!policy_mgr_is_hw_dbs_2x2_capable(psoc) &&
+	   policy_mgr_is_current_hwmode_dbs(psoc)) {
+		tdls_err("Current HW mode is 1*1 DBS. Wait for Opportunistic timer to expire to enable TDLS in FW");
+		return QDF_STATUS_SUCCESS;
+	}
 	tdls_obj_vdev = tdls_get_vdev(psoc, WLAN_TDLS_NB_ID);
 	if (tdls_obj_vdev) {
 		tdls_debug("Enable TDLS in FW and host as only one active sta/p2p_cli interface is present");