From a9e6a9792eb89248829f81961ba67d84864b7ce3 Mon Sep 17 00:00:00 2001 From: Mike Silbersack Date: Mon, 11 Feb 2002 23:29:15 +0000 Subject: [PATCH] Remove mbuf exhaustion warning messages; these are handled by the mbuf system in a rate-limited fashion now. MFC: Already performed due to sloppiness. --- sys/dev/bge/if_bge.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c index 7b192e1b1c8..9abff5027d3 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); }