Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Mar 2015 21:45:49 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r280827 - head/sys/dev/ath/ath_hal
Message-ID:  <201503292145.t2TLjn7g053974@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503292145.t2TLjn7g053974>