VirtualBox

Changeset 61688 in vbox


Ignore:
Timestamp:
Jun 14, 2016 7:35:59 AM (9 years ago)
Author:
vboxsync
Message:

VMM/HMSVMR0: Follow up fix for r108040.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp

    r61683 r61688  
    46694669            }
    46704670            else
    4671                 AssertMsg(rc == VERR_EM_INTERPRETER, ("hmR0SvmExitMsr: EMInterpretWrmsr failed rc=%Rrc\n", rc));
     4671                AssertMsg(   rc == VERR_EM_INTERPRETER
     4672                          || rc == VINF_CPUM_R3_MSR_WRITE, ("hmR0SvmExitMsr: EMInterpretWrmsr failed rc=%Rrc\n", rc));
    46724673        }
    46734674        else
     
    47154716            }
    47164717            else
    4717                 AssertMsg(rc == VERR_EM_INTERPRETER, ("hmR0SvmExitMsr: EMInterpretRdmsr failed rc=%Rrc\n", rc));
     4718                AssertMsg(   rc == VERR_EM_INTERPRETER
     4719                          || rc == VINF_CPUM_R3_MSR_READ, ("hmR0SvmExitMsr: EMInterpretRdmsr failed rc=%Rrc\n", rc));
    47184720        }
    47194721        else
     
    47214723            rc = VBOXSTRICTRC_TODO(EMInterpretInstruction(pVCpu, CPUMCTX2CORE(pCtx), 0));
    47224724            if (RT_UNLIKELY(rc != VINF_SUCCESS))
    4723                 AssertMsg(rc == VERR_EM_INTERPRETER, ("hmR0SvmExitMsr: RdMsr. EMInterpretInstruction failed rc=%Rrc\n", rc));
     4725            {
     4726                AssertMsg(   rc == VERR_EM_INTERPRETER
     4727                          || rc == VINF_CPUM_R3_MSR_READ, ("hmR0SvmExitMsr: RdMsr. EMInterpretInstruction failed rc=%Rrc\n", rc));
     4728            }
    47244729            /* RIP updated by EMInterpretInstruction(). */
    47254730            HMSVM_CHECK_SINGLE_STEP(pVCpu, rc);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette