svn commit: r186306 - in releng/7.1/sys: . contrib/pf dev/bce dev/cxgb

Xin LI delphij at FreeBSD.org
Fri Dec 19 00:20:48 UTC 2008


Author: delphij
Date: Fri Dec 19 00:20:48 2008
New Revision: 186306
URL: http://svn.freebsd.org/changeset/base/186306

Log:
  MFC r186169:
  
  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
  Approved by:	re (kensmith)

Modified:
  releng/7.1/sys/   (props changed)
  releng/7.1/sys/contrib/pf/   (props changed)
  releng/7.1/sys/dev/bce/if_bce.c
  releng/7.1/sys/dev/cxgb/   (props changed)

Modified: releng/7.1/sys/dev/bce/if_bce.c
==============================================================================
--- releng/7.1/sys/dev/bce/if_bce.c	Fri Dec 19 00:19:46 2008	(r186305)
+++ releng/7.1/sys/dev/bce/if_bce.c	Fri Dec 19 00:20:48 2008	(r186306)
@@ -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;


More information about the svn-src-all mailing list