summaryrefslogtreecommitdiff
path: root/tools/tools
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2020-05-13 16:36:42 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2020-05-13 16:36:42 +0000
commit7072a50124a645ffde3422f91cd720f1340011a9 (patch)
tree8081a4f20f25ff2299dce3f0e970ccfc75b6c0ea /tools/tools
parentcfa985350d5a378f6691d41a827b038c7a9f79e5 (diff)
downloadsrc-test2-7072a50124a645ffde3422f91cd720f1340011a9.tar.gz
src-test2-7072a50124a645ffde3422f91cd720f1340011a9.zip
Notes
Diffstat (limited to 'tools/tools')
-rw-r--r--tools/tools/ath/athratestats/main.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/tools/tools/ath/athratestats/main.c b/tools/tools/ath/athratestats/main.c
index b3f85f758577..b0e390e12896 100644
--- a/tools/tools/ath/athratestats/main.c
+++ b/tools/tools/ath/athratestats/main.c
@@ -64,7 +64,7 @@ static int do_loop = 0;
* This needs to be big enough to fit the two TLVs, the rate table
* and the rate statistics table for a single node.
*/
-#define STATS_BUF_SIZE 8192
+#define STATS_BUF_SIZE 65536
#define PRINTMSG(...) do { \
if (do_loop == 0) \
@@ -122,24 +122,23 @@ ath_sample_stats(struct ath_ratestats *r, struct ath_rateioctl_rt *rt,
(long long) sn->ratemask);
for (y = 0; y < NUM_PACKET_SIZE_BINS; y++) {
- PRINTATTR_ON(COLOR_PAIR(y+4) | A_BOLD);
+ PRINTATTR_ON(COLOR_PAIR(4 + (y % 2)) | A_BOLD);
PRINTMSG("[%4u] cur rate %d %s since switch: "
- "packets %d ticks %u\n",
+ "packets %d ticks %u ",
bin_to_size(y),
dot11rate(rt, sn->current_rix[y]),
dot11str(rt, sn->current_rix[y]),
sn->packets_since_switch[y],
sn->ticks_since_switch[y]);
- PRINTMSG("[%4u] last sample (%d %s) cur sample (%d %s) "
+ PRINTMSG("last sample (%d %s) cur sample (%d %s) "
"packets sent %d\n",
- bin_to_size(y),
dot11rate(rt, sn->last_sample_rix[y]),
dot11str(rt, sn->last_sample_rix[y]),
dot11rate(rt, sn->current_sample_rix[y]),
dot11str(rt, sn->current_sample_rix[y]),
sn->packets_sent[y]);
- PRINTATTR_OFF(COLOR_PAIR(y+4) | A_BOLD);
+ PRINTATTR_OFF(COLOR_PAIR(4 + (y % 2)) | A_BOLD);
PRINTATTR_ON(COLOR_PAIR(3) | A_BOLD);
PRINTMSG("[%4u] packets since sample %d sample tt %u\n",
@@ -147,7 +146,6 @@ ath_sample_stats(struct ath_ratestats *r, struct ath_rateioctl_rt *rt,
sn->packets_since_sample[y],
sn->sample_tt[y]);
PRINTATTR_OFF(COLOR_PAIR(3) | A_BOLD);
- PRINTMSG("\n");
}
PRINTMSG(" TX Rate TXTOTAL:TXOK EWMA T/ F"
" avg last xmit\n");