svn commit: r280827 - head/sys/dev/ath/ath_hal

Adrian Chadd adrian at FreeBSD.org
Sun Mar 29 21:45:50 UTC 2015


Author: adrian
Date: Sun Mar 29 21:45:48 2015
New Revision: 280827
URL: https://svnweb.freebsd.org/changeset/base/280827

Log:
  Add a new field to HAL_ANISTATS - the extension channel busy count.
  
  This is only used by the AR9300 HAL for now - but just be careful if
  you decide to recompile the kernel with NO_CLEAN=1.

Modified:
  head/sys/dev/ath/ath_hal/ah.h

Modified: head/sys/dev/ath/ath_hal/ah.h
==============================================================================
--- head/sys/dev/ath/ath_hal/ah.h	Sun Mar 29 21:45:28 2015	(r280826)
+++ head/sys/dev/ath/ath_hal/ah.h	Sun Mar 29 21:45:48 2015	(r280827)
@@ -540,6 +540,7 @@ typedef enum {
 typedef struct {
 	u_int32_t	cyclecnt_diff;		/* delta cycle count */
 	u_int32_t	rxclr_cnt;		/* rx clear count */
+	u_int32_t	extrxclr_cnt;		/* ext chan rx clear count */
 	u_int32_t	txframecnt_diff;	/* delta tx frame count */
 	u_int32_t	rxframecnt_diff;	/* delta rx frame count */
 	u_int32_t	listen_time;		/* listen time in msec - time for which ch is free */


More information about the svn-src-head mailing list