summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_rl.c
diff options
context:
space:
mode:
authorsilby <silby@FreeBSD.org>2002-02-11 23:38:30 +0000
committersilby <silby@FreeBSD.org>2002-02-11 23:38:30 +0000
commitf6c142724016a48be2bd25c037dfc38689ef8f7b (patch)
tree1f6a9945a801e035fe6756dad0a8fea693bf79a3 /sys/pci/if_rl.c
parentd942145dce184ccf98210f3af7e2af9974cd9138 (diff)
downloadFreeBSD-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/pci/if_rl.c')
-rw-r--r--sys/pci/if_rl.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c
index 980404f..be47166 100644
--- a/sys/pci/if_rl.c
+++ b/sys/pci/if_rl.c
@@ -1225,8 +1225,6 @@ static void rl_rxeof(sc)
NULL);
if (m == NULL) {
ifp->if_ierrors++;
- printf("rl%d: out of mbufs, tried to "
- "copy %d bytes\n", sc->rl_unit, wrap);
} else {
m_copyback(m, wrap, total_len - wrap,
sc->rl_cdata.rl_rx_buf);
@@ -1237,8 +1235,6 @@ static void rl_rxeof(sc)
NULL);
if (m == NULL) {
ifp->if_ierrors++;
- printf("rl%d: out of mbufs, tried to "
- "copy %d bytes\n", sc->rl_unit, total_len);
}
cur_rx += total_len + 4 + ETHER_CRC_LEN;
}
OpenPOWER on IntegriCloud