svn commit: r253965 - head/sys/dev/ixgbe
Jack F Vogel
jfv at FreeBSD.org
Mon Aug 5 16:16:50 UTC 2013
Author: jfv
Date: Mon Aug 5 16:16:50 2013
New Revision: 253965
URL: http://svnweb.freebsd.org/changeset/base/253965
Log:
Correct a fat-finger in the last delta.
MFC after: ASAP
Modified:
head/sys/dev/ixgbe/ixgbe.c
Modified: head/sys/dev/ixgbe/ixgbe.c
==============================================================================
--- head/sys/dev/ixgbe/ixgbe.c Mon Aug 5 12:55:23 2013 (r253964)
+++ head/sys/dev/ixgbe/ixgbe.c Mon Aug 5 16:16:50 2013 (r253965)
@@ -1581,7 +1581,7 @@ ixgbe_msix_link(void *arg)
/* First get the cause */
reg_eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
/* Be sure the queue bits are not cleared */
- reg_eicr = ~IXGBE_EICR_RTX_QUEUE;
+ reg_eicr &= ~IXGBE_EICR_RTX_QUEUE;
/* Clear interrupt with write */
IXGBE_WRITE_REG(hw, IXGBE_EICR, reg_eicr);
More information about the svn-src-all
mailing list