瀏覽代碼

qcacld-3.0: Choose a valid vdev_id to post set_hw_mode command

Currently, vdev_id 0 is chosen as default vdev_id in
opportunistic_timer_handler when none of the vdevs are started.
The same is used to send set_hw_mode command. But vdev_id 0 might
not be valid all the time and set_hw_mode command fails in
serialization module in such cases.
Below is one possible scenario,
1. Load the driver. p2p0 gets vdev_id 0 and wlan0 gets vdev_id 1
2. Enable NAN and create two NDIs. p2p0 interface(vdev_id-0) will
   be deleted by userspace as part of this.
3. Disable NAN and remove the NDIs. It triggers opportunistic_timer
   but hw_mode won't be set to SMM as the vdev corresponds to
   vdev_id-0 doesn't exist.
So, choose a valid vdev_id(mostly belong to STA/NAN) as default
vdev_id.

Change-Id: I19bd00a07cb2c818af9ed5021b0ae0aca8c49f2f
CRs-Fixed: 2889404
Srinivas Dasari 4 年之前
父節點
當前提交
2a88c79c05
共有 1 個文件被更改,包括 11 次插入4 次删除
  1. 11 4
      components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

+ 11 - 4
components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

@@ -1553,6 +1553,7 @@ static uint32_t pm_get_vdev_id_of_first_conn_idx(struct wlan_objmgr_psoc *psoc)
 {
 	uint32_t conn_index = 0, vdev_id = 0;
 	struct policy_mgr_psoc_priv_obj *pm_ctx;
+	struct wlan_objmgr_vdev *vdev;
 
 	pm_ctx = policy_mgr_get_context(psoc);
 	if (!pm_ctx) {
@@ -1564,16 +1565,22 @@ static uint32_t pm_get_vdev_id_of_first_conn_idx(struct wlan_objmgr_psoc *psoc)
 	     conn_index++)  {
 		if (pm_conc_connection_list[conn_index].in_use) {
 			vdev_id = pm_conc_connection_list[conn_index].vdev_id;
+			policy_mgr_debug("Use vdev_id:%d for opportunistic upgrade",
+					 vdev_id);
 			break;
 		}
 	}
 	qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
-	if (conn_index == MAX_NUMBER_OF_CONC_CONNECTIONS)
+	if (conn_index == MAX_NUMBER_OF_CONC_CONNECTIONS) {
+		vdev = wlan_objmgr_pdev_get_first_vdev(pm_ctx->pdev,
+						       WLAN_POLICY_MGR_ID);
+		if (vdev) {
+			vdev_id = wlan_vdev_get_id(vdev);
+			wlan_objmgr_vdev_release_ref(vdev, WLAN_POLICY_MGR_ID);
+		}
 		policy_mgr_debug("Use default vdev_id:%d for opportunistic upgrade",
 				 vdev_id);
-	else
-		policy_mgr_debug("Use vdev_id:%d for opportunistic upgrade",
-				 vdev_id);
+	}
 
 	return vdev_id;
 }