Print out the current fifo queue depth correctly - not just the max
queue depth. Silly hat to me.
This commit is contained in:
parent
da5dfd565f
commit
1ab002f461
@ -399,8 +399,9 @@ ath_sysctl_txagg(SYSCTL_HANDLER_ARGS)
|
|||||||
|
|
||||||
ATH_RX_LOCK(sc);
|
ATH_RX_LOCK(sc);
|
||||||
for (i = 0; i < 2; i++) {
|
for (i = 0; i < 2; i++) {
|
||||||
printf("%d: fifolen: %d; head=%d; tail=%d\n",
|
printf("%d: fifolen: %d/%d; head=%d; tail=%d\n",
|
||||||
i,
|
i,
|
||||||
|
sc->sc_rxedma[i].m_fifo_depth,
|
||||||
sc->sc_rxedma[i].m_fifolen,
|
sc->sc_rxedma[i].m_fifolen,
|
||||||
sc->sc_rxedma[i].m_fifo_head,
|
sc->sc_rxedma[i].m_fifo_head,
|
||||||
sc->sc_rxedma[i].m_fifo_tail);
|
sc->sc_rxedma[i].m_fifo_tail);
|
||||||
|
Loading…
Reference in New Issue
Block a user