All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][HVM] fix VNIF restore failure on HVM guest with heavy workload
@ 2007-04-10 16:47 Zhai, Edwin
  2007-04-10 19:16 ` Keir Fraser
  0 siblings, 1 reply; 13+ messages in thread
From: Zhai, Edwin @ 2007-04-10 16:47 UTC (permalink / raw)
  To: Ian Pratt, Keir Fraser, Tim Deegan; +Cc: xen-devel, edwin.zhai

[PATCH][HVM] fix VNIF restore failure on HVM guest with heavy workload

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>

VNIF has many intrs when save/restore with net workload, so need keep handler from intrs

diff -r 2fab1ec4dc74 linux-2.6-xen-sparse/drivers/xen/core/reboot.c
--- a/linux-2.6-xen-sparse/drivers/xen/core/reboot.c	Mon Apr 09 16:35:01 2007 +0800
+++ b/linux-2.6-xen-sparse/drivers/xen/core/reboot.c	Tue Apr 10 16:44:52 2007 +0800
@@ -44,12 +44,14 @@ int __xen_suspend(int fast_suspend)
 int __xen_suspend(int fast_suspend)
 {
 	xenbus_suspend();
+	local_irq_disable();
 	platform_pci_suspend();
 
 	/* pvdrv sleep in this hyper-call when save */
 	HYPERVISOR_shutdown(SHUTDOWN_suspend);
 
 	platform_pci_resume();
+	local_irq_enable();
 	xenbus_resume();
 	printk("PV stuff on HVM resume successfully!\n");

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

end of thread, other threads:[~2007-04-13  9:42 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-10 16:47 [PATCH][HVM] fix VNIF restore failure on HVM guest with heavy workload Zhai, Edwin
2007-04-10 19:16 ` Keir Fraser
2007-04-11  7:20   ` Zhai, Edwin
2007-04-11  7:41     ` Keir Fraser
2007-04-11  8:56     ` Keir Fraser
2007-04-11 16:24       ` Re: [PATCH][HVM] fix VNIF restore failure on HVMguest " Zhao, Fan
2007-04-11 16:54         ` Re: [PATCH][HVM] fix VNIF restore failure on HVMguestwith " Steven Hand
2007-04-12 18:46           ` Mark Williamson
2007-04-12 18:51             ` Steven Hand
2007-04-13  9:42               ` Keir Fraser
2007-04-11 17:32         ` Re: [PATCH][HVM] fix VNIF restore failure on HVMguest with " Keir Fraser
2007-04-12  2:47           ` Zhao, Fan
2007-04-12  7:06             ` Keir Fraser

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.