[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] We need to be more precise and restore the %eip.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID 7557c46a9edf0d30f4f92c9466a00cad61b1d2a8 # Parent 151da8f5d5f24ce5183fd75512b2f9d72fe029cf We need to be more precise and restore the %eip. Signed-Off-By: Leendert van Doorn <leendert@xxxxxxxxxxxxxx> diff -r 151da8f5d5f2 -r 7557c46a9edf xen/arch/x86/vmx.c --- a/xen/arch/x86/vmx.c Fri Sep 2 17:53:04 2005 +++ b/xen/arch/x86/vmx.c Fri Sep 2 17:53:34 2005 @@ -1559,15 +1559,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-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |