Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Aug 2013 16:16:50 +0000 (UTC)
From:      Jack F Vogel <jfv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r253965 - head/sys/dev/ixgbe
Message-ID:  <201308051616.r75GGoWg044711@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 



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