Browse Source

qcacld-3.0: Do not cache connection info for non sta interface

Currently driver does not check the mode of the current interface
whether it is STA of CLI and it caches the connection info, in this
process it allocates the memory to cache he operation, this memory
get freed only for station type adapter because of which there is
a possibility of memleak for CLI interface.

To avoid above issue, add a change to only cache the information
STA interface.

Change-Id: Ic68d71dfd9887600fe1a287de66d735c2c802491
CRs-Fixed: 3028583
Ashish Kumar Dhanotiya 3 years ago
parent
commit
7f9901450a
1 changed files with 13 additions and 6 deletions
  1. 13 6
      core/hdd/src/wlan_hdd_cm_connect.c

+ 13 - 6
core/hdd/src/wlan_hdd_cm_connect.c

@@ -601,14 +601,21 @@ static void hdd_cm_save_bss_info(struct hdd_adapter *adapter,
 		hdd_sta_ctx->conn_info.conn_flag.vht_op_present = false;
 	}
 
-	/* Cleanup already existing he info */
-	hdd_cleanup_conn_info(adapter);
+	/*
+	 * Cache connection info only in case of station
+	 */
+	if (adapter->device_mode == QDF_STA_MODE) {
+		/* Cleanup already existing he info */
+		hdd_cleanup_conn_info(adapter);
 
-	/* Cache last connection info */
-	qdf_mem_copy(&hdd_sta_ctx->cache_conn_info, &hdd_sta_ctx->conn_info,
-		     sizeof(hdd_sta_ctx->cache_conn_info));
+		/* Cache last connection info */
+		qdf_mem_copy(&hdd_sta_ctx->cache_conn_info,
+			     &hdd_sta_ctx->conn_info,
+			     sizeof(hdd_sta_ctx->cache_conn_info));
+
+		hdd_copy_he_operation(hdd_sta_ctx, &assoc_resp->he_op);
+	}
 
-	hdd_copy_he_operation(hdd_sta_ctx, &assoc_resp->he_op);
 	qdf_mem_free(assoc_resp);
 }