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/tx | |
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/tx')
-rw-r--r-- | sys/dev/tx/if_tx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c index 0fb9051..26b6bdb 100644 --- a/sys/dev/tx/if_tx.c +++ b/sys/dev/tx/if_tx.c @@ -862,7 +862,6 @@ epic_ifstart(ifp) if( NULL != m ){ EPIC_MGETCLUSTER(m); if( NULL == m ){ - printf(EPIC_FORMAT ": cannot allocate mbuf cluster\n",EPIC_ARGS(sc)); m_freem(m0); ifp->if_oerrors++; continue; @@ -940,7 +939,6 @@ epic_rx_done(sc) /* Try to get mbuf cluster */ EPIC_MGETCLUSTER( buf->mbuf ); if( NULL == buf->mbuf ) { - printf(EPIC_FORMAT ": cannot allocate mbuf cluster\n",EPIC_ARGS(sc)); buf->mbuf = m; desc->status = 0x8000; sc->sc_if.if_ierrors++; |