Prechádzať zdrojové kódy

qcacmn: Choose opportunistic timer's session id dynamically

Current opportunistic timer chooses session id as 0 up on expiry
which creates the issue when session id 0 doesn't exist.

Fix the situation by dynamically choosing existing session id to
complete the action.

CRs-Fixed: 2166667
Change-Id: I2e1da2ba0078381a5e91decd32d32b8ad77cec19
Krunal Soni 7 rokov pred
rodič
commit
9abb49061d

+ 1 - 0
umac/cmn_services/policy_mgr/src/wlan_policy_mgr_action.c

@@ -1141,6 +1141,7 @@ void policy_mgr_check_and_stop_opportunistic_timer(
 		qdf_mc_timer_stop(&pm_ctx->dbs_opportunistic_timer);
 		action = policy_mgr_need_opportunistic_upgrade(psoc);
 		if (action) {
+			qdf_event_reset(&pm_ctx->opportunistic_update_done_evt);
 			status = policy_mgr_next_actions(psoc, id, action,
 				POLICY_MGR_UPDATE_REASON_OPPORTUNISTIC);
 			if (status != QDF_STATUS_SUCCESS) {

+ 35 - 9
umac/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -1250,6 +1250,35 @@ void policy_mgr_set_pcl_for_existing_combo(
 	qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
 }
 
+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;
+
+	pm_ctx = policy_mgr_get_context(psoc);
+	if (!pm_ctx) {
+		policy_mgr_err("Invalid Context");
+		return conn_index;
+	}
+	qdf_mutex_acquire(&pm_ctx->qdf_conc_list_lock);
+	for (conn_index = 0; conn_index < MAX_NUMBER_OF_CONC_CONNECTIONS;
+	     conn_index++)  {
+		if (pm_conc_connection_list[conn_index].in_use) {
+			vdev_id = pm_conc_connection_list[conn_index].vdev_id;
+			break;
+		}
+	}
+	qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
+	if (conn_index == MAX_NUMBER_OF_CONC_CONNECTIONS)
+		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;
+}
+
 /**
  * pm_dbs_opportunistic_timer_handler() - handler of
  * dbs_opportunistic_timer
@@ -1262,6 +1291,7 @@ void policy_mgr_set_pcl_for_existing_combo(
 void pm_dbs_opportunistic_timer_handler(void *data)
 {
 	enum policy_mgr_conc_next_action action = PM_NOP;
+	uint32_t session_id;
 	struct wlan_objmgr_psoc *psoc = (struct wlan_objmgr_psoc *)data;
 
 	if (!psoc) {
@@ -1272,15 +1302,11 @@ void pm_dbs_opportunistic_timer_handler(void *data)
 	/* if we still need it */
 	action = policy_mgr_need_opportunistic_upgrade(psoc);
 	policy_mgr_debug("action:%d", action);
-	if (action) {
-		/* lets call for action */
-		/* session id is being used only
-		 * in hidden ssid case for now.
-		 * So, session id 0 is ok here.
-		 */
-		policy_mgr_next_actions(psoc, 0, action,
+	if (!action)
+		return;
+	session_id = pm_get_vdev_id_of_first_conn_idx(psoc);
+	policy_mgr_next_actions(psoc, session_id, action,
 				POLICY_MGR_UPDATE_REASON_OPPORTUNISTIC);
-	}
 }
 
 /**