All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [STABLE 2.6.28.y PATCH] e1000: fix virtualization bug
       [not found] <20090512173327.20369.75390.stgit@localhost.localdomain>
@ 2009-05-12 20:48 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2009-05-12 20:48 UTC (permalink / raw)
  To: Jeff Kirsher; +Cc: chrisw, stable, netdev, Jesse Brandeburg, David S. Miller

On Tue, May 12, 2009 at 10:33:29AM -0700, Jeff Kirsher wrote:
> From: Jesse Brandeburg <jesse.brandeburg@intel.com>
> 
> [STABLE] backport upstream commit e151a60ad1faffb6241cf7eb6846353df1f33a32

We aren't maintaining the 2.6.28-stable tree anymore, sorry.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [STABLE 2.6.28.y PATCH] e1000: fix virtualization bug
@ 2009-05-12 17:47 Jeff Kirsher
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff Kirsher @ 2009-05-12 17:47 UTC (permalink / raw)
  To: chrisw, greg; +Cc: stable, netdev

From: Jesse Brandeburg <jesse.brandeburg@intel.com>

[STABLE] backport upstream commit e151a60ad1faffb6241cf7eb6846353df1f33a32

a recent fix to e1000 (commit 15b2bee2) caused KVM/QEMU/VMware based
virtualized e1000 interfaces to begin failing when resetting.

This is because the driver in a virtual environment doesn't
get to run instructions *AT ALL* when an interrupt is asserted.
The interrupt code runs immediately and this recent bug fix
allows an interrupt to be possible when the interrupt handler
will reject it (due to the new code), when being called from
any path in the driver that holds the E1000_RESETTING flag.

the driver should use the __E1000_DOWN flag instead of the
__E1000_RESETTING flag to prevent interrupt execution
while reconfiguring the hardware.

Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: "David S. Miller" <davem@davemloft.net>
---

 drivers/net/e1000/e1000_main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
index b727fef..44f0843 100644
--- a/drivers/net/e1000/e1000_main.c
+++ b/drivers/net/e1000/e1000_main.c
@@ -3732,7 +3732,7 @@ static irqreturn_t e1000_intr(int irq, void *data)
 	struct e1000_hw *hw = &adapter->hw;
 	u32 rctl, icr = er32(ICR);
 
-	if (unlikely((!icr) || test_bit(__E1000_RESETTING, &adapter->flags)))
+	if (unlikely((!icr) || test_bit(__E1000_DOWN, &adapter->flags)))
 		return IRQ_NONE;  /* Not our interrupt */
 
 	/* IMS will not auto-mask if INT_ASSERTED is not set, and if it is


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-05-12 21:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20090512173327.20369.75390.stgit@localhost.localdomain>
2009-05-12 20:48 ` [STABLE 2.6.28.y PATCH] e1000: fix virtualization bug Greg KH
2009-05-12 17:47 Jeff Kirsher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.