svn commit: r226900 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Sat Oct 29 07:17:48 UTC 2011


Author: adrian
Date: Sat Oct 29 07:17:47 2011
New Revision: 226900
URL: http://svn.freebsd.org/changeset/base/226900

Log:
  Add some new ath(4) debugging bits, from my if_ath_tx 11n TX branch.

Modified:
  head/sys/dev/ath/if_ath_debug.h

Modified: head/sys/dev/ath/if_ath_debug.h
==============================================================================
--- head/sys/dev/ath/if_ath_debug.h	Sat Oct 29 06:55:57 2011	(r226899)
+++ head/sys/dev/ath/if_ath_debug.h	Sat Oct 29 07:17:47 2011	(r226900)
@@ -57,6 +57,11 @@ enum { 
 	ATH_DEBUG_TDMA		= 0x00800000,	/* TDMA processing */
 	ATH_DEBUG_TDMA_TIMER	= 0x01000000,	/* TDMA timer processing */
 	ATH_DEBUG_REGDOMAIN	= 0x02000000,	/* regulatory processing */
+	ATH_DEBUG_SW_TX		= 0x04000000,	/* per-packet software TX */
+	ATH_DEBUG_SW_TX_BAW	= 0x08000000,	/* BAW handling */
+	ATH_DEBUG_SW_TX_CTRL	= 0x10000000,	/* queue control */
+	ATH_DEBUG_SW_TX_AGGR	= 0x20000000,	/* aggregate TX */
+	ATH_DEBUG_SW_TX_RETRIES	= 0x40000000,	/* software TX retries */
 	ATH_DEBUG_FATAL		= 0x80000000,	/* fatal errors */
 	ATH_DEBUG_ANY		= 0xffffffff
 };


More information about the svn-src-all mailing list