Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Mar 2013 06:11:58 +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: r248090 - head/sys/dev/ath
Message-ID:  <201303090611.r296BwGh035020@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 }



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