diff options
-rw-r--r-- | sys/dev/bge/if_bge.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c index 7b192e1..9abff50 100644 --- a/sys/dev/bge/if_bge.c +++ b/sys/dev/bge/if_bge.c @@ -715,15 +715,11 @@ bge_newbuf_std(sc, i, m) if (m == NULL) { MGETHDR(m_new, M_DONTWAIT, MT_DATA); if (m_new == NULL) { - printf("bge%d: mbuf allocation failed " - "-- packet dropped!\n", sc->bge_unit); return(ENOBUFS); } MCLGET(m_new, M_DONTWAIT); if (!(m_new->m_flags & M_EXT)) { - printf("bge%d: cluster allocation failed " - "-- packet dropped!\n", sc->bge_unit); m_freem(m_new); return(ENOBUFS); } @@ -764,8 +760,6 @@ bge_newbuf_jumbo(sc, i, m) /* Allocate the mbuf. */ MGETHDR(m_new, M_DONTWAIT, MT_DATA); if (m_new == NULL) { - printf("bge%d: mbuf allocation failed " - "-- packet dropped!\n", sc->bge_unit); return(ENOBUFS); } |