summaryrefslogtreecommitdiff
path: root/sys/dev/ic/dc.c
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-01-28 01:48:22 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-01-28 01:48:22 +0000
commit4a52bb217f3322c68c760cd367ddce40bdd5ef19 (patch)
tree8b42fb69fb98c7e157ac082d5030bf7975c8c09c /sys/dev/ic/dc.c
parentaa04ec6eae5b5d4866cd748edce607fdeafe51a1 (diff)
remove printf's from dc_newbuf().
Diffstat (limited to 'sys/dev/ic/dc.c')
-rw-r--r--sys/dev/ic/dc.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/sys/dev/ic/dc.c b/sys/dev/ic/dc.c
index 52b41e65ee1..a1adf756721 100644
--- a/sys/dev/ic/dc.c
+++ b/sys/dev/ic/dc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dc.c,v 1.89 2005/11/07 03:20:00 brad Exp $ */
+/* $OpenBSD: dc.c,v 1.90 2006/01/28 01:48:21 brad Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -1962,23 +1962,17 @@ dc_newbuf(sc, i, m)
if (m == NULL) {
MGETHDR(m_new, M_DONTWAIT, MT_DATA);
- if (m_new == NULL) {
- printf("%s: no memory for rx list "
- "-- packet dropped!\n", sc->sc_dev.dv_xname);
+ if (m_new == NULL)
return (ENOBUFS);
- }
MCLGET(m_new, M_DONTWAIT);
if (!(m_new->m_flags & M_EXT)) {
- printf("%s: no memory for rx list "
- "-- packet dropped!\n", sc->sc_dev.dv_xname);
m_freem(m_new);
return (ENOBUFS);
}
m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
if (bus_dmamap_load_mbuf(sc->sc_dmat, sc->sc_rx_sparemap,
m_new, BUS_DMA_NOWAIT) != 0) {
- printf("%s: rx load failed\n", sc->sc_dev.dv_xname);
m_freem(m_new);
return (ENOBUFS);
}
@@ -1986,6 +1980,11 @@ dc_newbuf(sc, i, m)
sc->dc_cdata.dc_rx_chain[i].sd_map = sc->sc_rx_sparemap;
sc->sc_rx_sparemap = map;
} else {
+ /*
+ * We're re-using a previously allocated mbuf;
+ * be sure to re-init pointers and lengths to
+ * default values.
+ */
m_new = m;
m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
m_new->m_data = m_new->m_ext.ext_buf;