diff options
author | luigi <luigi@FreeBSD.org> | 2001-12-04 02:30:53 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2001-12-04 02:30:53 +0000 |
commit | cb46bc11558a2bd1a3e4acffedd055d99de6e5df (patch) | |
tree | a0df8d92b78cc61f8d937b424c097357d58c1497 /sys/dev/dc | |
parent | 8f464117e59525aa28fe2ed496f6f638747314e6 (diff) | |
download | FreeBSD-src-cb46bc11558a2bd1a3e4acffedd055d99de6e5df.zip FreeBSD-src-cb46bc11558a2bd1a3e4acffedd055d99de6e5df.tar.gz |
Remove error messages on mbuf allocation failures, now
this is done more safely in kern/subr_mbuf.c
Two-days'-delay-thanks-to: @home shutting down service
Diffstat (limited to 'sys/dev/dc')
-rw-r--r-- | sys/dev/dc/if_dc.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/sys/dev/dc/if_dc.c b/sys/dev/dc/if_dc.c index 4506fe8..05d2ff6 100644 --- a/sys/dev/dc/if_dc.c +++ b/sys/dev/dc/if_dc.c @@ -2272,16 +2272,11 @@ static int dc_newbuf(sc, i, m) if (m == NULL) { MGETHDR(m_new, M_DONTWAIT, MT_DATA); - if (m_new == NULL) { - printf("dc%d: no memory for rx list " - "-- packet dropped!\n", sc->dc_unit); + if (m_new == NULL) return(ENOBUFS); - } MCLGET(m_new, M_DONTWAIT); if (!(m_new->m_flags & M_EXT)) { - printf("dc%d: no memory for rx list " - "-- packet dropped!\n", sc->dc_unit); m_freem(m_new); return(ENOBUFS); } @@ -2949,15 +2944,12 @@ static int dc_coal(sc, m_head) m = *m_head; MGETHDR(m_new, M_DONTWAIT, MT_DATA); - if (m_new == NULL) { - printf("dc%d: no memory for tx list", sc->dc_unit); + if (m_new == NULL) return(ENOBUFS); - } if (m->m_pkthdr.len > MHLEN) { MCLGET(m_new, M_DONTWAIT); if (!(m_new->m_flags & M_EXT)) { m_freem(m_new); - printf("dc%d: no memory for tx list", sc->dc_unit); return(ENOBUFS); } } |