summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2001-12-14 05:56:35 +0000
committerluigi <luigi@FreeBSD.org>2001-12-14 05:56:35 +0000
commitbf2556cfad12b040393aa6a33ea80a5adb0b51d6 (patch)
tree1eb55d37853a849027d5e26a1610989f6a3945e2 /sys/dev
parentd3b383005d81dc439c329c685a134957e3c0b5f7 (diff)
downloadFreeBSD-src-bf2556cfad12b040393aa6a33ea80a5adb0b51d6.zip
FreeBSD-src-bf2556cfad12b040393aa6a33ea80a5adb0b51d6.tar.gz
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
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sf/if_sf.c7
-rw-r--r--sys/dev/sk/if_sk.c5
-rw-r--r--sys/dev/ti/if_ti.c7
-rw-r--r--sys/dev/vr/if_vr.c7
4 files changed, 4 insertions, 22 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c
index 487b48f..8ebc2f5b 100644
--- a/sys/dev/sf/if_sf.c
+++ b/sys/dev/sf/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);
}
diff --git a/sys/dev/sk/if_sk.c b/sys/dev/sk/if_sk.c
index 8604209..5ba23f5 100644
--- a/sys/dev/sk/if_sk.c
+++ b/sys/dev/sk/if_sk.c
@@ -672,11 +672,8 @@ static int sk_newbuf(sc_if, c, m)
caddr_t *buf = NULL;
MGETHDR(m_new, M_DONTWAIT, MT_DATA);
- if (m_new == NULL) {
- printf("sk%d: no memory for rx list -- "
- "packet dropped!\n", sc_if->sk_unit);
+ if (m_new == NULL)
return(ENOBUFS);
- }
/* Allocate the jumbo buffer */
buf = sk_jalloc(sc_if);
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c
index 98b9b64..106f065 100644
--- a/sys/dev/ti/if_ti.c
+++ b/sys/dev/ti/if_ti.c
@@ -700,16 +700,11 @@ static int ti_newbuf_std(sc, i, m)
if (m == NULL) {
MGETHDR(m_new, M_DONTWAIT, MT_DATA);
- if (m_new == NULL) {
- printf("ti%d: mbuf allocation failed "
- "-- packet dropped!\n", sc->ti_unit);
+ if (m_new == NULL)
return(ENOBUFS);
- }
MCLGET(m_new, M_DONTWAIT);
if (!(m_new->m_flags & M_EXT)) {
- printf("ti%d: cluster allocation failed "
- "-- packet dropped!\n", sc->ti_unit);
m_freem(m_new);
return(ENOBUFS);
}
diff --git a/sys/dev/vr/if_vr.c b/sys/dev/vr/if_vr.c
index f037294..0956396 100644
--- a/sys/dev/vr/if_vr.c
+++ b/sys/dev/vr/if_vr.c
@@ -924,16 +924,11 @@ static int vr_newbuf(sc, c, m)
if (m == NULL) {
MGETHDR(m_new, M_DONTWAIT, MT_DATA);
- if (m_new == NULL) {
- printf("vr%d: no memory for rx list "
- "-- packet dropped!\n", sc->vr_unit);
+ if (m_new == NULL)
return(ENOBUFS);
- }
MCLGET(m_new, M_DONTWAIT);
if (!(m_new->m_flags & M_EXT)) {
- printf("vr%d: no memory for rx list "
- "-- packet dropped!\n", sc->vr_unit);
m_freem(m_new);
return(ENOBUFS);
}
OpenPOWER on IntegriCloud