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

Adrian Chadd adrian at FreeBSD.org
Sat Mar 9 06:11:59 UTC 2013


Author: adrian
Date: Sat Mar  9 06:11:58 2013
New Revision: 248090
URL: http://svnweb.freebsd.org/changeset/base/248090

Log:
  Print out the queue flags during a TX DMA shutdown.

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Sat Mar  9 05:20:33 2013	(r248089)
+++ head/sys/dev/ath/if_ath.c	Sat Mar  9 06:11:58 2013	(r248090)
@@ -4342,9 +4342,12 @@ ath_tx_stopdma(struct ath_softc *sc, str
 {
 	struct ath_hal *ah = sc->sc_ah;
 
-	DPRINTF(sc, ATH_DEBUG_RESET, "%s: tx queue [%u] %p, link %p\n",
-	    __func__, txq->axq_qnum,
+	DPRINTF(sc, ATH_DEBUG_RESET,
+	    "%s: tx queue [%u] %p, flags 0x%08x, link %p\n",
+	    __func__,
+	    txq->axq_qnum,
 	    (caddr_t)(uintptr_t) ath_hal_gettxbuf(ah, txq->axq_qnum),
+	    txq->axq_flags,
 	    txq->axq_link);
 	(void) ath_hal_stoptxdma(ah, txq->axq_qnum);
 }


More information about the svn-src-all mailing list