Browse Source

qcacld-3.0: Allow station stats during roam start

In existing design, get_station stats request is
not entertained right from roam start till roam
complete/abort.
In some roam invoke cases, FW would do back to
back partial and full scan if good candidates are
not available. Therefore, the station stats are not
collected for a long time ~7secs.

Instead of blocking the stats request through out the
roaming, block only when roam sync is in progress
which would prevent unnecessary delays in roam sync
processing.

Change-Id: I47567a81eca08a0daabbd4d490b349392e5cd505
CRs-Fixed: 3572625
Surya Prakash Sivaraj 1 year ago
parent
commit
c3fd62f1fb
1 changed files with 4 additions and 4 deletions
  1. 4 4
      core/hdd/src/wlan_hdd_stats.c

+ 4 - 4
core/hdd/src/wlan_hdd_stats.c

@@ -3243,7 +3243,7 @@ int wlan_hdd_ll_stats_get(struct wlan_hdd_link_info *link_info,
 	}
 
 	if (hdd_cm_is_vdev_roaming(link_info)) {
-		hdd_err("Roaming in progress, cannot process the request");
+		hdd_debug("Roaming in progress, cannot process the request");
 		return -EBUSY;
 	}
 
@@ -3309,7 +3309,7 @@ __wlan_hdd_cfg80211_ll_stats_get(struct wiphy *wiphy,
 	}
 
 	if (hdd_cm_is_vdev_roaming(link_info)) {
-		hdd_err("Roaming in progress, cannot process the request");
+		hdd_debug("Roaming in progress, cannot process the request");
 		return -EBUSY;
 	}
 
@@ -7378,8 +7378,8 @@ static int wlan_hdd_get_sta_stats(struct wlan_hdd_link_info *link_info,
 		return 0;
 	}
 
-	if (hdd_cm_is_vdev_roaming(link_info)) {
-		hdd_debug("Roaming is in progress, cannot continue with this request");
+	if (hdd_is_roam_sync_in_progress(hdd_ctx, link_info->vdev_id)) {
+		hdd_debug("Roam sync is in progress, cannot continue with this request");
 		/*
 		 * supplicant reports very low rssi to upper layer
 		 * and handover happens to cellular.