Changeset 40447 in vbox for trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
- Timestamp:
- Mar 13, 2012 3:30:35 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r40442 r40447 3656 3656 case VMX_EXIT_RDMSR: /* 31 RDMSR. Guest software attempted to execute RDMSR. */ 3657 3657 { 3658 uint32_t cbSize;3659 3660 3658 STAM_COUNTER_INC((exitReason == VMX_EXIT_RDMSR) ? &pVCpu->hwaccm.s.StatExitRdmsr : &pVCpu->hwaccm.s.StatExitWrmsr); 3661 3659 3662 3660 /* Note: the intel manual claims there's a REX version of RDMSR that's slightly different, so we play safe by completely disassembling the instruction. */ 3663 3661 Log2(("VMX: %s\n", (exitReason == VMX_EXIT_RDMSR) ? "rdmsr" : "wrmsr")); 3664 rc = EMInterpretInstruction(pVM, pVCpu, CPUMCTX2CORE(pCtx), 0 , &cbSize);3662 rc = EMInterpretInstruction(pVM, pVCpu, CPUMCTX2CORE(pCtx), 0); 3665 3663 if (rc == VINF_SUCCESS) 3666 3664 {
Note:
See TracChangeset
for help on using the changeset viewer.