Browse Source

qcacld-3.0: Use WLAN_MAX_VDEVS for validating number of vdev stats

Currently while extracting vdev extended summary stats, host
checks for number of vdev stats sent by firmware and fails if
the number is greater than WLAN_MAX_MLD. This sanity check will
be false positive, in case of MLO STA + STA/SAP concurrency.

So, to avoid such false positive failures, use WLAN_MAX_VDEVS
to validate number of vdev extended stats sent by firmware.

Change-Id: I067f847ca6c436ff23166e19ecc721e6d95f0294
CRs-Fixed: 3613398
Aditya Kodukula 1 year ago
parent
commit
c5202d36f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/target_if/cp_stats/src/target_if_mc_cp_stats.c

+ 1 - 1
components/target_if/cp_stats/src/target_if_mc_cp_stats.c

@@ -874,7 +874,7 @@ target_if_cp_stats_extract_vdev_extd_stats(struct wmi_unified *wmi_hdl,
 	if (!ev->num_vdev_extd_stats)
 		return QDF_STATUS_SUCCESS;
 
-	if (ev->num_vdev_extd_stats > WLAN_MAX_MLD) {
+	if (ev->num_vdev_extd_stats > WLAN_MAX_VDEVS) {
 		cp_stats_err("num_vdev_extd_stats is invalid: %u",
 			     ev->num_vdev_extd_stats);
 		return QDF_STATUS_E_INVAL;