Browse Source

qcacld-3.0: Reduce log verbosity for per-chan tx/rx time

When per-channel tx/rx time is printed in wlan driver, the
current code checks whether service bit
wmi_service_ll_stats_per_chan_rx_tx_time is enabled in every
loop, which will result in very verbose logs printed on
some platforms where the above service bit is not indicated
by firmware.

Check whether wmi_service_ll_stats_per_chan_rx_tx_time is
enabled only once whenever wlan link radio stat event is
handled to reduce the unnecessary verbose logging.

Change-Id: I438df8ab307a793ac108503c767373a79e817919
CRs-Fixed: 2804956
wadesong 4 years ago
parent
commit
f2cfe1c76a
1 changed files with 8 additions and 5 deletions
  1. 8 5
      core/wma/src/wma_utils.c

+ 8 - 5
core/wma/src/wma_utils.c

@@ -2046,6 +2046,7 @@ static int wma_unified_link_radio_stats_event_handler(void *handle,
 	struct wifi_radio_stats *rs_results = NULL;
 	struct wifi_channel_stats *chn_results;
 	struct wifi_channel_stats *channels_in_this_event;
+	bool per_chan_rx_tx_time_enabled = false;
 	int32_t status;
 
 	struct mac_context *mac = cds_get_context(QDF_MODULE_ID_PE);
@@ -2187,6 +2188,12 @@ static int wma_unified_link_radio_stats_event_handler(void *handle,
 		rs_results->tx_time_per_power_level = NULL;
 	}
 
+	per_chan_rx_tx_time_enabled = wmi_service_enabled(
+		wma_handle->wmi_handle,
+		wmi_service_ll_stats_per_chan_rx_tx_time);
+	if (!per_chan_rx_tx_time_enabled)
+		wma_nofl_debug("LL Stats per channel tx time and rx time are not supported.");
+
 	rs_results->more_channels = fixed_param->more_channels;
 	num_chan_in_this_event = radio_stats->num_channels;
 
@@ -2211,14 +2218,10 @@ static int wma_unified_link_radio_stats_event_handler(void *handle,
 				       channel_stats->center_freq1,
 				       channel_stats->radio_awake_time,
 				       channel_stats->cca_busy_time);
-			if (wmi_service_enabled(
-			      wma_handle->wmi_handle,
-			      wmi_service_ll_stats_per_chan_rx_tx_time)) {
+			if (per_chan_rx_tx_time_enabled) {
 				wma_nofl_debug("tx time %u rx time %u",
 					       channel_stats->tx_time,
 					       channel_stats->rx_time);
-			} else {
-				wma_nofl_debug("LL Stats per channel tx time and rx time are not supported.");
 			}
 
 			channel_stats++;