Browse Source

qcacld-3.0: Restore deleted connection with total con count <= max count

Currently, deleted connections are not restored if current connection count
is geater than or equal to max no of allowed connection - no of deleted
connection which may cause issue when there are 4 connections and 2 ML sta
link got deleted temporarily for getting pcl list. As max no of connection
allowed are 4, deleted sta links should be restored. In check to restore
the deleted link comparison is done with < max no connection, so deleted
connections are not restored.

Fix is to add a check that current connection count + deleted connection
count should be less than or equal to MAX_NUMBER_OF_CONC_CONNECTIONS.

Change-Id: Ia21235ffb4d5ecc3500001f215bab5a3c48de90a
CRs-Fixed: 3216952
Sheenam Monga 2 years ago
parent
commit
70c62c1728
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

+ 2 - 2
components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

@@ -868,9 +868,9 @@ void policy_mgr_restore_deleted_conn_info(struct wlan_objmgr_psoc *psoc,
 
 	qdf_mutex_acquire(&pm_ctx->qdf_conc_list_lock);
 	conn_index = policy_mgr_get_connection_count(psoc);
-	if (MAX_NUMBER_OF_CONC_CONNECTIONS - num_cxn_del <= conn_index) {
+	if (conn_index + num_cxn_del > MAX_NUMBER_OF_CONC_CONNECTIONS) {
 		qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
-		policy_mgr_err("Failed to restore the deleted information %d/%d/%d",
+		policy_mgr_err("Failed to restore the deleted information %d/%d, as it exceed max %d",
 			       conn_index, num_cxn_del,
 			       MAX_NUMBER_OF_CONC_CONNECTIONS);
 		return;