From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Sharma Subject: [PATCH] vmresume-vmx-bug.patch Date: Wed, 8 Jun 2005 16:06:17 -0700 Message-ID: <20050608230617.GA29361@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Ian Pratt , Keir Fraser Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org If vmresume/launch fails, only the affected domain should crash. Signed-off-by: Arun Sharma Index: trunk/xen/arch/x86/vmx_vmcs.c =================================================================== --- trunk/xen/arch/x86/vmx_vmcs.c (revision 1220) +++ trunk/xen/arch/x86/vmx_vmcs.c (working copy) @@ -444,12 +444,12 @@ void vm_launch_fail(unsigned long eflags) { - BUG(); + __vmx_bug(guest_cpu_user_regs()); } void vm_resume_fail(unsigned long eflags) { - BUG(); + __vmx_bug(guest_cpu_user_regs()); } #endif /* CONFIG_VMX */