summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2013-05-16 17:45:01 +0000
committeradrian <adrian@FreeBSD.org>2013-05-16 17:45:01 +0000
commit49cc8337ff7b5110ad8f0939790d9fb52ef85798 (patch)
treea4a719a8aa13364318577f5422d0602e28c3e5e1 /sys/dev
parent32fe2f0aca5a963eff7e338c44a911ce2f2d2b46 (diff)
downloadFreeBSD-src-49cc8337ff7b5110ad8f0939790d9fb52ef85798.zip
FreeBSD-src-49cc8337ff7b5110ad8f0939790d9fb52ef85798.tar.gz
Dump out the holding buffer descriptor contents and addresses stopping DMA.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ath/if_ath.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c
index 04d723a..36a71d9 100644
--- a/sys/dev/ath/if_ath.c
+++ b/sys/dev/ath/if_ath.c
@@ -4602,15 +4602,25 @@ ath_tx_stopdma(struct ath_softc *sc, struct ath_txq *txq)
struct ath_hal *ah = sc->sc_ah;
DPRINTF(sc, ATH_DEBUG_RESET,
- "%s: tx queue [%u] %p, active=%d, hwpending=%d, flags 0x%08x, link %p\n",
+ "%s: tx queue [%u] %p, active=%d, hwpending=%d, flags 0x%08x, "
+ "link %p, holdingbf=%p\n",
__func__,
txq->axq_qnum,
(caddr_t)(uintptr_t) ath_hal_gettxbuf(ah, txq->axq_qnum),
(int) (!! ath_hal_txqenabled(ah, txq->axq_qnum)),
(int) ath_hal_numtxpending(ah, txq->axq_qnum),
txq->axq_flags,
- txq->axq_link);
+ txq->axq_link,
+ txq->axq_holdingbf);
+
(void) ath_hal_stoptxdma(ah, txq->axq_qnum);
+
+#ifdef ATH_DEBUG
+ if ((sc->sc_debug & ATH_DEBUG_RESET)
+ && (txq->axq_holdingbf != NULL)) {
+ ath_printtxbuf(sc, txq->axq_holdingbf, txq->axq_qnum, 0, 0);
+ }
+#endif
}
int
OpenPOWER on IntegriCloud