From 892b11073f15119bfd28d32860273d8d338dc0f3 Mon Sep 17 00:00:00 2001 From: Jason Wright Date: Sat, 1 Feb 2003 06:00:11 +0000 Subject: Look, noone cares if you run of out rx descriptors and whining about it just makes the situation worse. --- sys/dev/ic/hme.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/dev/ic/hme.c b/sys/dev/ic/hme.c index c8210d5fdb0..4bb859d7667 100644 --- a/sys/dev/ic/hme.c +++ b/sys/dev/ic/hme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hme.c,v 1.23 2002/11/26 01:08:18 fgsch Exp $ */ +/* $OpenBSD: hme.c,v 1.24 2003/02/01 06:00:10 jason Exp $ */ /* $NetBSD: hme.c,v 1.21 2001/07/07 15:59:37 thorpej Exp $ */ /*- @@ -812,6 +812,11 @@ hme_eint(sc, status) status &= ~HME_SEB_STAT_DTIMEXP; } + if (status & HME_SEB_STAT_NORXD) { + ifp->if_ierrors++; + status &= ~HME_SEB_STAT_NORXD; + } + if (status == 0) return (1); -- cgit v1.2.3