Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Dec 2008 05:03:22 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r186169 - head/sys/dev/bce
Message-ID:  <200812160503.mBG53ME4027329@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Tue Dec 16 05:03:22 2008
New Revision: 186169
URL: http://svn.freebsd.org/changeset/base/186169

Log:
  Don't count InFramesL2FilterDiscards into Ierr.  This value does not represent
  a real packet error but simply indicate that an unexpected unicast or multicast
  error was received by the NIC, which was not counted in the past as well.
  
  Reported by:	many (on -stable@)
  Reviewed by:	davidch
  MFC after:	3 days

Modified:
  head/sys/dev/bce/if_bce.c

Modified: head/sys/dev/bce/if_bce.c
==============================================================================
--- head/sys/dev/bce/if_bce.c	Tue Dec 16 04:59:04 2008	(r186168)
+++ head/sys/dev/bce/if_bce.c	Tue Dec 16 05:03:22 2008	(r186169)
@@ -7408,7 +7408,6 @@ bce_stats_update(struct bce_softc *sc)
 		(u_long) sc->stat_IfInMBUFDiscards +
 		(u_long) sc->stat_Dot3StatsAlignmentErrors +
 		(u_long) sc->stat_Dot3StatsFCSErrors +
-		(u_long) sc->stat_IfInFramesL2FilterDiscards +
 		(u_long) sc->stat_IfInRuleCheckerDiscards +
 		(u_long) sc->stat_IfInFTQDiscards +
 		(u_long) sc->com_no_buffers;



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