diff options
author | silby <silby@FreeBSD.org> | 2002-02-11 23:38:30 +0000 |
---|---|---|
committer | silby <silby@FreeBSD.org> | 2002-02-11 23:38:30 +0000 |
commit | f6c142724016a48be2bd25c037dfc38689ef8f7b (patch) | |
tree | 1f6a9945a801e035fe6756dad0a8fea693bf79a3 /sys/dev/ti | |
parent | d942145dce184ccf98210f3af7e2af9974cd9138 (diff) | |
download | FreeBSD-src-f6c142724016a48be2bd25c037dfc38689ef8f7b.zip FreeBSD-src-f6c142724016a48be2bd25c037dfc38689ef8f7b.tar.gz |
Remove mbuf exhaustion warning messages; these are handled by the
mbuf system in a rate-limited fashion now.
MFC after: 3 days
Diffstat (limited to 'sys/dev/ti')
-rw-r--r-- | sys/dev/ti/if_ti.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index 106f065..0951e38 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -744,8 +744,6 @@ static int ti_newbuf_mini(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); return(ENOBUFS); } m_new->m_len = m_new->m_pkthdr.len = MHLEN; @@ -787,8 +785,6 @@ static int ti_newbuf_jumbo(sc, i, m) /* Allocate the mbuf. */ MGETHDR(m_new, M_DONTWAIT, MT_DATA); if (m_new == NULL) { - printf("ti%d: mbuf allocation failed " - "-- packet dropped!\n", sc->ti_unit); return(ENOBUFS); } |