Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Dec 2006 18:09:17 -0500
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        Oleg Bulyzhin <oleg@FreeBSD.org>
Cc:        cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   Re: cvs commit: src/sys/dev/bge if_bge.c if_bgereg.h
Message-ID:  <200612121809.19564.jkim@FreeBSD.org>
In-Reply-To: <20061212220557.GC91560@lath.rinet.ru>
References:  <200612010108.kB118qxY020349@repoman.freebsd.org> <20061212220557.GC91560@lath.rinet.ru>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tuesday 12 December 2006 05:05 pm, Oleg Bulyzhin wrote:
> On Fri, Dec 01, 2006 at 01:08:52AM +0000, Jung-uk Kim wrote:
> > jkim        2006-12-01 01:08:52 UTC
> >
> >   FreeBSD src repository
> >
> >   Modified files:
> >     sys/dev/bge          if_bge.c if_bgereg.h
> >   Log:
> >   Simplify statistics updates, remove redundant register reads,
> > and add discarded RX packets to input error for BCM5705 or newer
> > chipset as the others. Unfortunately we cannot do the same for
> > output errors because ifOutDiscards equivalent register does not
> > exist.  While I am here, replace misleading and wrong
> > BGE_RX_STATS/BGE_TX_STATS with BGE_MAC_STATS.  They were reversed
> > but worked accidently.
> >
> >   Revision  Changes    Path
> >   1.153     +15 -23    src/sys/dev/bge/if_bge.c
> >   1.58      +4 -5      src/sys/dev/bge/if_bgereg.h
>
> I would say you have simplified it too much. With your change you
> will get wrong numbers after ifconfig down/up (since it implies
> hardware counters reset while sc->bge_* counters are not cleared).

I did clear sc->bge_* counter:

@@ -3368,6 +3357,9 @@ bge_init_locked(struct bge_softc *sc)
 
 	/* Init our RX return ring index. */
 	sc->bge_rx_saved_considx = 0;
+
+	/* Init our RX/TX stat counters. */
+	sc->bge_rx_discards = sc->bge_tx_discards = sc->bge_tx_collisions = 0;
 
 	/* Init TX ring. */
 	bge_init_tx_ring(sc);

While ifconfig down/up, bge_init_locked() should be called.
Did I miss something?

Jung-uk Kim



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200612121809.19564.jkim>