Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Don't count deferrals as output errors. It's onl...



details:   https://anonhg.NetBSD.org/src/rev/3edc0aef8671
branches:  trunk
changeset: 472924:3edc0aef8671
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed May 12 15:33:29 1999 +0000

description:
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.

diffstat:

 sys/dev/ic/elinkxl.c |  3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diffs (17 lines):

diff -r 956f3688cdc9 -r 3edc0aef8671 sys/dev/ic/elinkxl.c
--- a/sys/dev/ic/elinkxl.c      Wed May 12 12:48:27 1999 +0000
+++ b/sys/dev/ic/elinkxl.c      Wed May 12 15:33:29 1999 +0000
@@ -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 @@
        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,



Home | Main Index | Thread Index | Old Index