svn commit: r213045 - stable/8/sys/dev/alc

Xin LI delphij at FreeBSD.org
Thu Sep 23 01:30:50 UTC 2010


Author: delphij
Date: Thu Sep 23 01:30:50 2010
New Revision: 213045
URL: http://svn.freebsd.org/changeset/base/213045

Log:
  MFC r212764:
  
  status bits should be &'ed against status to be really functional.
  
  Reported by:	Jike Song
  Reviewed by:	yongari

Modified:
  stable/8/sys/dev/alc/if_alc.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/alc/if_alc.c
==============================================================================
--- stable/8/sys/dev/alc/if_alc.c	Thu Sep 23 01:24:33 2010	(r213044)
+++ stable/8/sys/dev/alc/if_alc.c	Thu Sep 23 01:30:50 2010	(r213045)
@@ -2948,8 +2948,8 @@ alc_rxeof(struct alc_softc *sc, struct r
 		 *  errored frames.
 		 */
 		status |= RRD_TCP_UDPCSUM_NOK | RRD_IPCSUM_NOK;
-		if ((RRD_ERR_CRC | RRD_ERR_ALIGN | RRD_ERR_TRUNC |
-		    RRD_ERR_RUNT) != 0)
+		if ((status & (RRD_ERR_CRC | RRD_ERR_ALIGN |
+		    RRD_ERR_TRUNC | RRD_ERR_RUNT)) != 0)
 			return;
 	}
 


More information about the svn-src-all mailing list