Browse Source

qcacld-3.0: Print the TX AMPDU in the LL Stats request debug log

In LL Stats request handler the rx_ampdu is wrongly printed as
tx_ampdu. Rectified the debug log to print both the tx_ampdu
and rx_ampdu.

Change-Id: I00df3da79a0aed95cda76edb7e3f80409c6abf75
CRs-Fixed: 3254595
Srikanth Marepalli 2 years ago
parent
commit
1fdf780846
1 changed files with 8 additions and 2 deletions
  1. 8 2
      core/hdd/src/wlan_hdd_debugfs_llstat.c

+ 8 - 2
core/hdd/src/wlan_hdd_debugfs_llstat.c

@@ -117,11 +117,17 @@ void hdd_debugfs_process_iface_stats(struct hdd_adapter *adapter,
 		ll_stats.len += len;
 		len = scnprintf(buffer,
 				DEBUGFS_LLSTATS_BUF_SIZE - ll_stats.len,
-				"\nac_type: %d, tx_mpdu: %u, rx_mpdu: %u, tx_mcast: %u, rx_mcast: %u, rx_ampdu: %u tx_ampdu: %u, mpdu_lost: %u, retries: %u, retries_short: %u, retries_long: %u, contention_time: min-%u max-%u avg-%u, contention num samples: %u, tx_pending_msdu: %u",
+				"\nac_type: %d, tx_mpdu: %u, rx_mpdu: %u, "
+				"tx_mcast: %u, rx_mcast: %u, tx_ampdu: %u, "
+				"rx_ampdu: %u, mpdu_lost: %u, retries: %u, "
+				"retries_short: %u, retries_long: %u, "
+				"contention_time: min-%u max-%u avg-%u, "
+				"contention num samples: %u, "
+				"tx_pending_msdu: %u",
 				ac_stats->ac_type,
 				ac_stats->tx_mpdu, ac_stats->rx_mpdu,
 				ac_stats->tx_mcast, ac_stats->rx_mcast,
-				ac_stats->rx_ampdu, ac_stats->rx_ampdu,
+				ac_stats->tx_ampdu, ac_stats->rx_ampdu,
 				ac_stats->mpdu_lost, ac_stats->retries,
 				ac_stats->retries_short, ac_stats->retries_long,
 				ac_stats->contention_time_min,