From bf2556cfad12b040393aa6a33ea80a5adb0b51d6 Mon Sep 17 00:00:00 2001 From: luigi Date: Fri, 14 Dec 2001 05:56:35 +0000 Subject: Remove printf's on mbuf/cluster allocation failures. There are now equivalent and less dangerous (rate limited) messages in the mbuf allocation code. MFC after: 3 days --- sys/pci/if_sf.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'sys/pci/if_sf.c') diff --git a/sys/pci/if_sf.c b/sys/pci/if_sf.c index 487b48f..8ebc2f5b 100644 --- a/sys/pci/if_sf.c +++ b/sys/pci/if_sf.c @@ -908,16 +908,11 @@ static int sf_newbuf(sc, c, m) if (m == NULL) { MGETHDR(m_new, M_DONTWAIT, MT_DATA); - if (m_new == NULL) { - printf("sf%d: no memory for rx list -- " - "packet dropped!\n", sc->sf_unit); + if (m_new == NULL) return(ENOBUFS); - } MCLGET(m_new, M_DONTWAIT); if (!(m_new->m_flags & M_EXT)) { - printf("sf%d: no memory for rx list -- " - "packet dropped!\n", sc->sf_unit); m_freem(m_new); return(ENOBUFS); } -- cgit v1.1