summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2013-03-18 01:11:52 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2013-03-18 01:11:52 +0000
commitd50e882ab9eb03542a029e6d36cbe11df455aa58 (patch)
treed6a161f224a55212dcad8bf58738b5544452c88f
parent774d251d994215eb5c7d78199dc77f6f0c378fc7 (diff)
Notes
-rw-r--r--sys/dev/ath/if_ath_rx_edma.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/ath/if_ath_rx_edma.c b/sys/dev/ath/if_ath_rx_edma.c
index 301a22cc060f..3df234184b79 100644
--- a/sys/dev/ath/if_ath_rx_edma.c
+++ b/sys/dev/ath/if_ath_rx_edma.c
@@ -661,9 +661,12 @@ ath_edma_rxfifo_alloc(struct ath_softc *sc, HAL_RX_QUEUE qtype, int nbufs)
bf = ath_edma_rxbuf_alloc(sc);
/* XXX should ensure the FIFO is not NULL? */
if (bf == NULL) {
- device_printf(sc->sc_dev, "%s: Q%d: alloc failed?\n",
+ device_printf(sc->sc_dev,
+ "%s: Q%d: alloc failed: i=%d, nbufs=%d?\n",
__func__,
- qtype);
+ qtype,
+ i,
+ nbufs);
break;
}