Sfoglia il codice sorgente

qcacld-3.0: Refactor hdd_get_max_tx_bitrate() API

To maintain the stats of each link, hdd_stats is moved
to per link data structure. To update the Tx parameters
for a specific link, change the hdd_get_max_tx_bitrate()
API function argument to take link info pointer.
Existing callers moved to deflink.

Change-Id: I095094b19e02b0f60c7f63ef25d8d684fe198327
CRs-Fixed: 3462230
Vinod Kumar Pirla 2 anni fa
parent
commit
92f3779183

+ 2 - 1
core/hdd/src/wlan_hdd_station_info.c

@@ -516,8 +516,9 @@ static int32_t hdd_add_sta_info(struct sk_buff *skb,
 		hdd_err("put fail");
 		goto fail;
 	}
+
 	if (hdd_cm_is_vdev_associated(adapter->deflink))
-		hdd_get_max_tx_bitrate(hdd_ctx, adapter);
+		hdd_get_max_tx_bitrate(adapter->deflink);
 
 	if (hdd_add_tx_bitrate(skb, adapter, NL80211_STA_INFO_TX_BITRATE)) {
 		hdd_err("hdd_add_tx_bitrate failed");

+ 12 - 14
core/hdd/src/wlan_hdd_stats.c

@@ -5697,29 +5697,27 @@ static void wlan_hdd_fill_os_rate_info(enum tx_rate_info rate_flags,
 		os_rate->flags |= RATE_INFO_FLAGS_SHORT_GI;
 }
 
-void hdd_get_max_tx_bitrate(struct hdd_context *hdd_ctx,
-			    struct hdd_adapter *adapter)
+void hdd_get_max_tx_bitrate(struct wlan_hdd_link_info *link_info)
 {
+	struct hdd_context *hdd_ctx = link_info->adapter->hdd_ctx;
 	struct station_info sinfo;
 	enum tx_rate_info tx_rate_flags;
 	uint8_t tx_mcs_index, tx_nss = 1;
 	uint16_t my_tx_rate;
 	struct hdd_station_ctx *hdd_sta_ctx;
 	struct wlan_objmgr_vdev *vdev;
-	struct hdd_stats *hdd_stats;
 
-	hdd_sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter->deflink);
+	hdd_sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(link_info);
 
 	qdf_mem_zero(&sinfo, sizeof(struct station_info));
 
-	hdd_stats = &adapter->deflink->hdd_stats;
-	sinfo.signal = adapter->deflink->rssi;
-	tx_mcs_index = hdd_stats->class_a_stat.tx_mcs_index;
-	my_tx_rate = hdd_stats->class_a_stat.tx_rate;
-	tx_rate_flags = hdd_stats->class_a_stat.tx_rx_rate_flags;
+	sinfo.signal = link_info->rssi;
+	tx_mcs_index = link_info->hdd_stats.class_a_stat.tx_mcs_index;
+	my_tx_rate = link_info->hdd_stats.class_a_stat.tx_rate;
+	tx_rate_flags = link_info->hdd_stats.class_a_stat.tx_rx_rate_flags;
 
 	if (!(tx_rate_flags & TX_RATE_LEGACY)) {
-		vdev = hdd_objmgr_get_vdev_by_user(adapter->deflink,
+		vdev = hdd_objmgr_get_vdev_by_user(link_info,
 						   WLAN_OSIF_STATS_ID);
 		if (vdev) {
 			/*
@@ -5730,7 +5728,7 @@ void hdd_get_max_tx_bitrate(struct hdd_context *hdd_ctx,
 			tx_nss = wlan_vdev_mlme_get_nss(vdev);
 			hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_STATS_ID);
 		} else {
-			tx_nss = hdd_stats->class_a_stat.tx_nss;
+			tx_nss = link_info->hdd_stats.class_a_stat.tx_nss;
 		}
 		hdd_check_and_update_nss(hdd_ctx, &tx_nss, NULL);
 
@@ -5738,9 +5736,9 @@ void hdd_get_max_tx_bitrate(struct hdd_context *hdd_ctx,
 			tx_mcs_index = 0;
 	}
 
-	if (hdd_report_max_rate(adapter->deflink, hdd_ctx->mac_handle,
-				&sinfo.txrate, sinfo.signal, tx_rate_flags,
-				tx_mcs_index, my_tx_rate, tx_nss)) {
+	if (hdd_report_max_rate(link_info, hdd_ctx->mac_handle, &sinfo.txrate,
+				sinfo.signal, tx_rate_flags, tx_mcs_index,
+				my_tx_rate, tx_nss)) {
 		hdd_sta_ctx->cache_conn_info.max_tx_bitrate = sinfo.txrate;
 		hdd_debug("Reporting max tx rate flags %d mcs %d nss %d bw %d",
 			  sinfo.txrate.flags, sinfo.txrate.mcs,

+ 3 - 5
core/hdd/src/wlan_hdd_stats.h

@@ -593,16 +593,14 @@ int wlan_hdd_get_temperature(struct hdd_adapter *adapter, int *temperature);
 
 /**
  * hdd_get_max_tx_bitrate() - Get the max tx bitrate of the AP
- * @hdd_ctx: hdd context
- * @adapter: hostapd interface
+ * @link_info: pointer to link_info struct in adapter
  *
- * THis function gets the MAX supported rate by AP and cache
+ * This function gets the MAX supported rate by AP and cache
  * it into connection info structure
  *
  * Return: None
  */
-void hdd_get_max_tx_bitrate(struct hdd_context *hdd_ctx,
-			    struct hdd_adapter *adapter);
+void hdd_get_max_tx_bitrate(struct wlan_hdd_link_info *link_info);
 
 #ifdef TX_MULTIQ_PER_AC
 /**