summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorsilby <silby@FreeBSD.org>2002-02-04 03:15:27 +0000
committersilby <silby@FreeBSD.org>2002-02-04 03:15:27 +0000
commitce2c570ba3c915f95ebe0e484b27d920fb67214c (patch)
tree0898e85968cf487bb88aac56aac16cd9cdec8531 /sys
parenta1a10418c86d19ba12c54a668c6309dcf7e61365 (diff)
downloadFreeBSD-src-ce2c570ba3c915f95ebe0e484b27d920fb67214c.zip
FreeBSD-src-ce2c570ba3c915f95ebe0e484b27d920fb67214c.tar.gz
Remove mbuf exhaustion warning messages; these are handled by the
mbuf system in a rate-limited fashion now. Reviewed by: luigi MFC after: 1 week
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/fxp/if_fxp.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c
index ce3bde3..7fc36ba 100644
--- a/sys/dev/fxp/if_fxp.c
+++ b/sys/dev/fxp/if_fxp.c
@@ -1836,8 +1836,6 @@ fxp_add_rfabuf(struct fxp_softc *sc, struct mbuf *oldm)
if (m != NULL) {
MCLGET(m, M_DONTWAIT);
if ((m->m_flags & M_EXT) == 0) {
- device_printf(sc->dev,
- "cluster allocation failed, packet dropped!\n");
m_freem(m);
if (oldm == NULL)
return 1;
@@ -1845,8 +1843,6 @@ fxp_add_rfabuf(struct fxp_softc *sc, struct mbuf *oldm)
m->m_data = m->m_ext.ext_buf;
}
} else {
- device_printf(sc->dev,
- "mbuf allocation failed, packet dropped!\n");
if (oldm == NULL)
return 1;
m = oldm;
OpenPOWER on IntegriCloud