svn commit: r361566 - head/sys/dev/ath/ath_rate/sample

Adrian Chadd adrian at FreeBSD.org
Wed May 27 22:48:34 UTC 2020


Author: adrian
Date: Wed May 27 22:48:34 2020
New Revision: 361566
URL: https://svnweb.freebsd.org/changeset/base/361566

Log:
  [ath] Update ath_rate_sample to use the same base type as ticks.
  
  Until net80211 grows a specific ticks type that matches the system,
  manually use the same type as the kernel/net80211 'ticks' type
  (signed int.)
  
  Tested:
  
  * AR9380, STA mode

Modified:
  head/sys/dev/ath/ath_rate/sample/sample.h

Modified: head/sys/dev/ath/ath_rate/sample/sample.h
==============================================================================
--- head/sys/dev/ath/ath_rate/sample/sample.h	Wed May 27 22:34:46 2020	(r361565)
+++ head/sys/dev/ath/ath_rate/sample/sample.h	Wed May 27 22:48:34 2020	(r361566)
@@ -105,7 +105,7 @@ struct sample_node {
 
 	int current_rix[NUM_PACKET_SIZE_BINS];
 	int packets_since_switch[NUM_PACKET_SIZE_BINS];
-	unsigned ticks_since_switch[NUM_PACKET_SIZE_BINS];
+	int ticks_since_switch[NUM_PACKET_SIZE_BINS];
 
 	int packets_since_sample[NUM_PACKET_SIZE_BINS];
 	unsigned sample_tt[NUM_PACKET_SIZE_BINS];


More information about the svn-src-head mailing list