svn commit: r249886 - user/adrian/net80211_tx/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Thu Apr 25 08:33:40 UTC 2013


Author: adrian
Date: Thu Apr 25 08:33:39 2013
New Revision: 249886
URL: http://svnweb.freebsd.org/changeset/base/249886

Log:
  Start fleshing out some more ALQ notifications.

Modified:
  user/adrian/net80211_tx/sys/dev/ath/if_ath_alq.h

Modified: user/adrian/net80211_tx/sys/dev/ath/if_ath_alq.h
==============================================================================
--- user/adrian/net80211_tx/sys/dev/ath/if_ath_alq.h	Thu Apr 25 08:33:22 2013	(r249885)
+++ user/adrian/net80211_tx/sys/dev/ath/if_ath_alq.h	Thu Apr 25 08:33:39 2013	(r249886)
@@ -99,6 +99,20 @@ struct if_ath_alq_interrupt {
 	uint32_t	intr_syncstate;
 };
 
+#define	ATH_ALQ_MIB_COUNTERS		11
+struct if_ath_alq_mib_counters {
+	uint32_t	valid;
+	uint32_t	tx_busy;
+	uint32_t	rx_busy;
+	uint32_t	chan_busy;
+	uint32_t	ext_chan_busy;
+	uint32_t	cycle_count;
+};
+
+#define	ATH_ALQ_MISSED_BEACON		12
+#define	ATH_ALQ_STUCK_BEACON		13
+#define	ATH_ALQ_RESUME_BEACON		14
+
 /*
  * These will always be logged, regardless.
  */


More information about the svn-src-user mailing list