Module Name:    src
Committed By:   skrll
Date:           Tue Feb  4 07:35:21 UTC 2020

Modified Files:
        src/sys/arch/acorn32/podulebus: if_ie.c

Log Message:
Adopt <net/if_stats.h>


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/acorn32/podulebus/if_ie.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/acorn32/podulebus/if_ie.c
diff -u src/sys/arch/acorn32/podulebus/if_ie.c:1.44 src/sys/arch/acorn32/podulebus/if_ie.c:1.45
--- src/sys/arch/acorn32/podulebus/if_ie.c:1.44	Fri Sep 13 07:55:05 2019
+++ src/sys/arch/acorn32/podulebus/if_ie.c	Tue Feb  4 07:35:21 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ie.c,v 1.44 2019/09/13 07:55:05 msaitoh Exp $ */
+/* $NetBSD: if_ie.c,v 1.45 2020/02/04 07:35:21 skrll Exp $ */
 
 /*
  * Copyright (c) 1995 Melvin Tang-Richardson.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.44 2019/09/13 07:55:05 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.45 2020/02/04 07:35:21 skrll Exp $");
 
 #define IGNORE_ETHER1_IDROM_CHECKSUM
 
@@ -1274,7 +1274,7 @@ ie_read_frame(struct ie_softc *sc, int n
     }
 
     if ( m==0 ) {
-	ifp->if_ierrors++;
+	if_statinc(ifp, if_ierrors);
 	return;
     }
 
@@ -1529,10 +1529,10 @@ ietint(struct ie_softc *sc)
 	printf ( "ietint: command still busy!\n" );
     
     if ( status & IE_STAT_OK ) {
-	ifp->if_opackets++;
-	ifp->if_collisions += status & IE_XS_MAXCOLL;
+	if_statinc(ifp, if_opackets);
+	if_statadd(ifp, if_collisions, status & IE_XS_MAXCOLL);
     } else {
-	ifp->if_oerrors++;	
+	if_statinc(ifp, if_oerrors);
 	if ( status & IE_STAT_ABORT )
 	    printf ( "ie: send aborted\n" );
 	if ( status & IE_XS_LATECOLL )

Reply via email to