From 3349e99e2353f9edff7d492fe83661265cd40105 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Mon, 8 May 2006 14:55:42 +0100 Subject: [PATCH] The current Xen code for VMX is setting the gp fault vmexiting in the EXCEPTION_BITMAP vmcs control. There is no need for that as VMM is just plainly re-injecting back to the guest. The attached is a simple patch to set the vmcs control properly. Signed-off-by: Nitin A Kamble Signed-off-by: Jun Nakajima xen-unstable changeset: 9956:a658da3a22dd3413a87b35496a490db028f98b19 xen-unstable date: Mon May 8 14:53:09 2006 +0100 --- xen/include/asm-x86/hvm/support.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xen/include/asm-x86/hvm/support.h b/xen/include/asm-x86/hvm/support.h index 22b24e392..088da6516 100644 --- a/xen/include/asm-x86/hvm/support.h +++ b/xen/include/asm-x86/hvm/support.h @@ -94,8 +94,7 @@ enum hval_bitmaps { #else #define MONITOR_DEFAULT_EXCEPTION_BITMAP \ ( EXCEPTION_BITMAP_PG | \ - EXCEPTION_BITMAP_BP | \ - EXCEPTION_BITMAP_GP ) + EXCEPTION_BITMAP_BP ) #endif #define PC_DEBUG_PORT 0x80 -- 2.39.5