Sfoglia il codice sorgente

qcacld-3.0: Move estimated_linkspeed to per link struct

To obtain linkspeed on per link basis, move
estimated_linkspeed member from adapter to link info.
Existing callers moved to deflink.

Change-Id: Ifeba9890c164176b54ebe669001d1f04064bf511
CRs-Fixed: 3452100
Vinod Kumar Pirla 2 anni fa
parent
commit
cdd3d51fdb
2 ha cambiato i file con 4 aggiunte e 5 eliminazioni
  1. 2 3
      core/hdd/inc/wlan_hdd_main.h
  2. 2 2
      core/hdd/src/wlan_hdd_stats.c

+ 2 - 3
core/hdd/inc/wlan_hdd_main.h

@@ -1016,6 +1016,7 @@ enum udp_qos_upgrade {
  * @rssi_on_disconnect: Rssi at disconnection time in STA mode
  * @rssi_send: Notify RSSI over lpass
  * @is_mlo_vdev_active: is the mlo vdev currently active
+ * @estimated_linkspeed: estimated link speed
  */
 struct wlan_hdd_link_info {
 	struct hdd_adapter *adapter;
@@ -1036,6 +1037,7 @@ struct wlan_hdd_link_info {
 	bool rssi_send;
 #endif
 	bool is_mlo_vdev_active;
+	uint32_t estimated_linkspeed;
 };
 
 /**
@@ -1074,7 +1076,6 @@ struct wlan_hdd_tx_power {
  * @hdd_stats: HDD statistics
  * @is_ll_stats_req_pending: atomic variable to check active stats req
  * @sta_stats_cached_timestamp: last updated stats timestamp
- * @estimated_linkspeed: estimated link speed
  * @qdf_monitor_mode_vdev_up_event: QDF event for monitor mode vdev up
  * @disconnect_comp_var: completion variable for disconnect callback
  * @linkup_event_var: completion variable for Linkup Event
@@ -1211,8 +1212,6 @@ struct hdd_adapter {
 	uint32_t sta_stats_cached_timestamp;
 #endif
 
-	uint32_t estimated_linkspeed;
-
 #ifdef FEATURE_MONITOR_MODE_SUPPORT
 	qdf_event_t qdf_monitor_mode_vdev_up_event;
 #endif

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

@@ -7586,7 +7586,7 @@ int wlan_hdd_get_linkspeed_for_peermac(struct hdd_adapter *adapter,
 		hdd_err("SME timed out while retrieving link speed");
 		goto cleanup;
 	}
-	adapter->estimated_linkspeed = linkspeed_info->estLinkSpeed;
+	adapter->deflink->estimated_linkspeed = linkspeed_info->estLinkSpeed;
 
 cleanup:
 	/*
@@ -7597,7 +7597,7 @@ cleanup:
 	osif_request_put(request);
 
 return_cached_value:
-	*linkspeed = adapter->estimated_linkspeed;
+	*linkspeed = adapter->deflink->estimated_linkspeed;
 
 	return ret;
 }