VirtualBox

Changeset 47586 in vbox for trunk


Ignore:
Timestamp:
Aug 7, 2013 12:19:22 PM (11 years ago)
Author:
vboxsync
Message:

VMM/HMVMXR0: Naming.

File:
1 edited

Legend:

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

    r47512 r47586  
    32983298 * @remarks No-long-jump zone!!!
    32993299 */
    3300 static int hmR0VmxLoadGuestDebugRegs(PVMCPU pVCpu, PCPUMCTX pMixedCtx)
     3300static int hmR0VmxLoadGuestDebugState(PVMCPU pVCpu, PCPUMCTX pMixedCtx)
    33013301{
    33023302    if (!(pVCpu->hm.s.fContextUseFlags & HM_CHANGED_GUEST_DEBUG))
     
    68256825    AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestSegmentRegs: rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc);
    68266826
    6827     rc = hmR0VmxLoadGuestDebugRegs(pVCpu, pMixedCtx);
    6828     AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestDebugRegs: rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc);
     6827    rc = hmR0VmxLoadGuestDebugState(pVCpu, pMixedCtx);
     6828    AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestDebugState: rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc);
    68296829
    68306830    rc = hmR0VmxLoadGuestMsrs(pVCpu, pMixedCtx);
     
    68346834    AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestApicState! rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc);
    68356835
    6836     /* Must be done after hmR0VmxLoadGuestDebugRegs() as it may update eflags.TF for debugging purposes. */
     6836    /* Must be done after hmR0VmxLoadGuestDebugState() as it may have updated eflags.TF for debugging purposes. */
    68376837    rc = hmR0VmxLoadGuestRipRspRflags(pVCpu, pMixedCtx);
    68386838    AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestRipRspRflags! rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, 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