From 9c5ccdf883568e5ca0ade359009273dbacec28f6 Mon Sep 17 00:00:00 2001 From: thorpej Date: Wed, 12 May 1999 15:33:29 +0000 Subject: [PATCH] Don't count deferrals as output errors. It's only a (single) output error if an excessive number of deferrals causes the transmission to abort. --- sys/dev/ic/elinkxl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/dev/ic/elinkxl.c b/sys/dev/ic/elinkxl.c index 558ce2eb5ad1..dcb97bef32ac 100644 --- a/sys/dev/ic/elinkxl.c +++ b/sys/dev/ic/elinkxl.c @@ -1,4 +1,4 @@ -/* $NetBSD: elinkxl.c,v 1.10 1999/04/28 17:34:01 dean Exp $ */ +/* $NetBSD: elinkxl.c,v 1.11 1999/05/12 15:33:29 thorpej Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -1356,7 +1356,6 @@ ex_getstats(sc) ifp->if_opackets += bus_space_read_1(iot, ioh, TX_FRAMES_OK); ifp->if_opackets += (upperok & 0x30) << 4; ifp->if_ierrors += bus_space_read_1(iot, ioh, RX_OVERRUNS); - ifp->if_oerrors += bus_space_read_1(iot, ioh, TX_DEFERRALS); ifp->if_collisions += bus_space_read_1(iot, ioh, TX_COLLISIONS); /* * There seems to be no way to get the exact number of collisions,