svn commit: r280361 - head/tools/tools/ath/athratestats

Adrian Chadd adrian at FreeBSD.org
Mon Mar 23 03:44:01 UTC 2015


Author: adrian
Date: Mon Mar 23 03:43:59 2015
New Revision: 280361
URL: https://svnweb.freebsd.org/changeset/base/280361

Log:
  Bump mask to be 64 bits - this fixes seeing MCS rates > 19.
  
  Tested:
  
  * AR9380, STA mode, associated to a 3x3 AP (also FreeBSD)

Modified:
  head/tools/tools/ath/athratestats/main.c

Modified: head/tools/tools/ath/athratestats/main.c
==============================================================================
--- head/tools/tools/ath/athratestats/main.c	Mon Mar 23 02:45:12 2015	(r280360)
+++ head/tools/tools/ath/athratestats/main.c	Mon Mar 23 03:43:59 2015	(r280361)
@@ -115,7 +115,7 @@ static void
 ath_sample_stats(struct ath_ratestats *r, struct ath_rateioctl_rt *rt,
     struct sample_node *sn)
 {
-	uint32_t mask;
+	uint64_t mask;
 	int rix, y;
 
 	PRINTMSG("static_rix (%d) ratemask 0x%llx\n",


More information about the svn-src-all mailing list