mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Print out the queue flags during a TX DMA shutdown.
This commit is contained in:
parent
3eed804d03
commit
9d2a962bf3
1 changed files with 5 additions and 2 deletions
|
|
@ -4342,9 +4342,12 @@ 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, 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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue