[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] vmx-vectoring-info.patch
We need to be more precise and restore the %eip. Signed-Off-By: Leendert van Doorn <leendert@xxxxxxxxxxxxxx> diff -r dfaf788ab18c xen/arch/x86/vmx.c --- a/xen/arch/x86/vmx.c Fri Aug 26 20:47:16 2005 +++ b/xen/arch/x86/vmx.c Wed Aug 31 00:18:27 2005 @@ -1536,15 +1536,18 @@ __vmread(IDT_VECTORING_INFO_FIELD, &idtv_info_field); if (idtv_info_field & INTR_INFO_VALID_MASK) { - if ((idtv_info_field & 0x0700) != 0x400) { /* exclude soft ints */ - __vmwrite(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field); - - if (idtv_info_field & 0x800) { /* valid error code */ - unsigned long error_code; - __vmread(VM_EXIT_INTR_ERROR_CODE, &error_code); - __vmwrite(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); - } - } + __vmwrite(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field); + + __vmread(VM_EXIT_INSTRUCTION_LEN, &inst_len); + if (inst_len >= 1 && inst_len <= 15) + __vmwrite(VM_ENTRY_INSTRUCTION_LEN, inst_len); + + if (idtv_info_field & 0x800) { /* valid error code */ + unsigned long error_code; + __vmread(IDT_VECTORING_ERROR_CODE, &error_code); + __vmwrite(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); + } + VMX_DBG_LOG(DBG_LEVEL_1, "idtv_info_field=%x", idtv_info_field); } _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |