Changeset 47958 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 21, 2013 9:45:19 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r47737 r47958 2895 2895 LogRel(("HM: CPU[%u] Instruction error %#x\n", i, pVM->aCpus[i].hm.s.vmx.LastError.u32InstrError)); 2896 2896 LogRel(("HM: CPU[%u] Exit reason %#x\n", i, pVM->aCpus[i].hm.s.vmx.LastError.u32ExitReason)); 2897 if (pVM->aCpus[i].hm.s.vmx.LastError.u32InstrError == VMX_ERROR_VMENTRY_INVALID_CONTROL_FIELDS) 2897 2898 if ( pVM->aCpus[i].hm.s.vmx.LastError.u32InstrError == VMX_ERROR_VMLAUCH_NON_CLEAR_VMCS 2899 || pVM->aCpus[i].hm.s.vmx.LastError.u32InstrError == VMX_ERROR_VMRESUME_NON_LAUNCHED_VMCS) 2900 { 2901 LogRel(("HM: CPU[%u] Entered Cpu %u\n", i, pVM->aCpus[i].hm.s.vmx.LastError.idEnteredCpu)); 2902 LogRel(("HM: CPU[%u] Current Cpu %u\n", i, pVM->aCpus[i].hm.s.vmx.LastError.idCurrentCpu)); 2903 } 2904 else if (pVM->aCpus[i].hm.s.vmx.LastError.u32InstrError == VMX_ERROR_VMENTRY_INVALID_CONTROL_FIELDS) 2898 2905 { 2899 2906 LogRel(("HM: CPU[%u] PinCtls %#RX32\n", i, pVM->aCpus[i].hm.s.vmx.u32PinCtls));
Note:
See TracChangeset
for help on using the changeset viewer.