summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2012-08-14 22:34:22 +0000
committeradrian <adrian@FreeBSD.org>2012-08-14 22:34:22 +0000
commitdf99e094f38718e934456b92285ad781d8128ec2 (patch)
treef4289ec798dad3462d8c6283fa1e697d5aafd7b3
parentefa454776b4c3c8d2072689e5ee093343e4f68bc (diff)
downloadFreeBSD-src-df99e094f38718e934456b92285ad781d8128ec2.zip
FreeBSD-src-df99e094f38718e934456b92285ad781d8128ec2.tar.gz
Dump out the TX FIFO depth.
-rw-r--r--sys/dev/ath/if_ath_sysctl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/ath/if_ath_sysctl.c b/sys/dev/ath/if_ath_sysctl.c
index e1e9426..1142422 100644
--- a/sys/dev/ath/if_ath_sysctl.c
+++ b/sys/dev/ath/if_ath_sysctl.c
@@ -357,10 +357,11 @@ ath_sysctl_txagg(SYSCTL_HANDLER_ARGS)
for (i = 0; i < HAL_NUM_TX_QUEUES; i++) {
if (ATH_TXQ_SETUP(sc, i)) {
- printf("HW TXQ %d: axq_depth=%d, axq_aggr_depth=%d\n",
+ printf("HW TXQ %d: axq_depth=%d, axq_aggr_depth=%d, axq_fifo_depth=%d\n",
i,
sc->sc_txq[i].axq_depth,
- sc->sc_txq[i].axq_aggr_depth);
+ sc->sc_txq[i].axq_aggr_depth,
+ sc->sc_txq[i].axq_fifo_depth);
}
}
OpenPOWER on IntegriCloud