Browse Source

qcacld-3.0: Move MSCS related fields to per link struct

The action frames can per sent on per link, hence move
to link info in adapter.
Existing callers moved to deflink pointer.

Change-Id: Ia8d8284017cd8d5564ae9ea4f1f8d67299e9cc70
CRs-Fixed: 3452185
Vinod Kumar Pirla 2 years ago
parent
commit
906c11ce52
3 changed files with 22 additions and 25 deletions
  1. 7 8
      core/hdd/inc/wlan_hdd_main.h
  2. 1 1
      core/hdd/src/wlan_hdd_cm_disconnect.c
  3. 14 16
      core/hdd/src/wlan_hdd_main.c

+ 7 - 8
core/hdd/inc/wlan_hdd_main.h

@@ -1021,6 +1021,8 @@ enum udp_qos_upgrade {
  * @is_mlo_vdev_active: is the mlo vdev currently active
  * @estimated_linkspeed: estimated link speed
  * @hdd_stats: HDD statistics
+ * @mscs_prev_tx_vo_pkts: count of prev VO AC packets transmitted
+ * @mscs_counter: Counter on MSCS action frames sent
  */
 struct wlan_hdd_link_info {
 	struct hdd_adapter *adapter;
@@ -1045,6 +1047,11 @@ struct wlan_hdd_link_info {
 	bool is_mlo_vdev_active;
 	uint32_t estimated_linkspeed;
 	struct hdd_stats hdd_stats;
+
+#ifdef WLAN_FEATURE_MSCS
+	unsigned long mscs_prev_tx_vo_pkts;
+	uint32_t mscs_counter;
+#endif /* WLAN_FEATURE_MSCS */
 };
 
 /**
@@ -1103,8 +1110,6 @@ struct wlan_hdd_tx_power {
  * @scan_block_work:
  * @blocked_scan_request_q:
  * @blocked_scan_request_q_lock:
- * @mscs_prev_tx_vo_pkts:
- * @mscs_counter:
  * @tx_flow_control_timer:
  * @tx_flow_timer_initialized:
  * @tx_flow_low_watermark:
@@ -1257,12 +1262,6 @@ struct hdd_adapter {
 	qdf_list_t blocked_scan_request_q;
 	qdf_mutex_t blocked_scan_request_q_lock;
 
-
-#ifdef WLAN_FEATURE_MSCS
-	unsigned long mscs_prev_tx_vo_pkts;
-	uint32_t mscs_counter;
-#endif /* WLAN_FEATURE_MSCS */
-
 #if  defined(QCA_LL_LEGACY_TX_FLOW_CONTROL) || \
 				defined(QCA_HL_NETDEV_FLOW_CONTROL)
 	qdf_mc_timer_t tx_flow_control_timer;

+ 1 - 1
core/hdd/src/wlan_hdd_cm_disconnect.c

@@ -241,7 +241,7 @@ void __hdd_cm_disconnect_handler_post_user_update(struct hdd_adapter *adapter,
 void reset_mscs_params(struct hdd_adapter *adapter)
 {
 	mlme_set_is_mscs_req_sent(adapter->deflink->vdev, false);
-	adapter->mscs_counter = 0;
+	adapter->deflink->mscs_counter = 0;
 }
 #endif
 

+ 14 - 16
core/hdd/src/wlan_hdd_main.c

@@ -10898,14 +10898,13 @@ void wlan_hdd_set_pm_qos_request(struct hdd_context *hdd_ctx,
 #ifdef WLAN_FEATURE_MSCS
 
 static
-void hdd_send_mscs_action_frame(struct hdd_context *hdd_ctx,
-				struct hdd_adapter *adapter)
+void hdd_send_mscs_action_frame(struct wlan_hdd_link_info *link_info)
 {
+	struct hdd_context *hdd_ctx = link_info->adapter->hdd_ctx;
 	uint64_t mscs_vo_pkt_delta;
 	unsigned long tx_vo_pkts = 0;
 	unsigned int cpu;
-	struct hdd_tx_rx_stats *stats =
-				&adapter->deflink->hdd_stats.tx_rx_stats;
+	struct hdd_tx_rx_stats *stats = &link_info->hdd_stats.tx_rx_stats;
 	uint32_t bus_bw_compute_interval;
 
 	/*
@@ -10918,27 +10917,26 @@ void hdd_send_mscs_action_frame(struct hdd_context *hdd_ctx,
 	for (cpu = 0; cpu < NUM_CPUS; cpu++)
 		tx_vo_pkts += stats->per_cpu[cpu].tx_classified_ac[SME_AC_VO];
 
-	if (!adapter->mscs_counter)
-		adapter->mscs_prev_tx_vo_pkts = tx_vo_pkts;
+	if (!link_info->mscs_counter)
+		link_info->mscs_prev_tx_vo_pkts = tx_vo_pkts;
 
-	adapter->mscs_counter++;
+	link_info->mscs_counter++;
 	bus_bw_compute_interval =
 		ucfg_dp_get_bus_bw_compute_interval(hdd_ctx->psoc);
-	if (adapter->mscs_counter * bus_bw_compute_interval >=
+	if (link_info->mscs_counter * bus_bw_compute_interval >=
 	    hdd_ctx->config->mscs_voice_interval * 1000) {
-		adapter->mscs_counter = 0;
+		link_info->mscs_counter = 0;
 		mscs_vo_pkt_delta =
-				HDD_BW_GET_DIFF(tx_vo_pkts,
-						adapter->mscs_prev_tx_vo_pkts);
+			HDD_BW_GET_DIFF(tx_vo_pkts,
+					link_info->mscs_prev_tx_vo_pkts);
 		if (mscs_vo_pkt_delta > hdd_ctx->config->mscs_pkt_threshold &&
-		    !mlme_get_is_mscs_req_sent(adapter->deflink->vdev))
-			sme_send_mscs_action_frame(adapter->deflink->vdev_id);
+		    !mlme_get_is_mscs_req_sent(link_info->vdev))
+			sme_send_mscs_action_frame(link_info->vdev_id);
 	}
 }
 #else
 static inline
-void hdd_send_mscs_action_frame(struct hdd_context *hdd_ctx,
-				struct hdd_adapter *adapter)
+void hdd_send_mscs_action_frame(struct wlan_hdd_link_info *link_info)
 {
 }
 #endif
@@ -11338,7 +11336,7 @@ static inline void wlan_hdd_send_mscs_action_frame(hdd_cb_handle context,
 		hdd_err("Invalid vdev");
 		return;
 	}
-	hdd_send_mscs_action_frame(hdd_ctx, link_info->adapter);
+	hdd_send_mscs_action_frame(link_info);
 }
 
 #else