VirtualBox

Ignore:
Timestamp:
Mar 19, 2013 4:01:32 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
84380
Message:

VMM/VMMR0: HM old-code segregation.

File:
1 edited

Legend:

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

    r44577 r45091  
    505505            if (g_HvmR0.vmx.fSupported)
    506506            {
     507                /* Call the global VT-x initialization routine. */
     508                rc = VMXR0GlobalInit();
     509                if (RT_FAILURE(rc))
     510                    g_HvmR0.lLastError = rc;
     511
    507512                /*
    508513                 * Install the VT-x methods.
     
    523528                 * Timer Does Not Count Down at the Rate Specified" erratum.
    524529                 */
    525                 if (  g_HvmR0.vmx.msr.vmx_pin_ctls.n.allowed1
    526                     & VMX_VMCS_CTRL_PIN_EXEC_CONTROLS_PREEMPT_TIMER)
     530                if (g_HvmR0.vmx.msr.vmx_pin_ctls.n.allowed1 & VMX_VMCS_CTRL_PIN_EXEC_CONTROLS_PREEMPT_TIMER)
    527531                {
    528532                    g_HvmR0.vmx.fUsePreemptTimer   = true;
     
    767771        }
    768772    }
     773
     774    /** @todo This needs cleaning up. There's no matching hmR0TermIntel() and all
     775     *        the VT-x/AMD-V specific bits should move into their respective
     776     *        modules. */
     777    /* Finally, call global VT-x/AMD-V termination. */
     778    if (g_HvmR0.vmx.fSupported)
     779        VMXR0GlobalTerm();
     780
    769781    return rc;
    770782}
Note: See TracChangeset for help on using the changeset viewer.

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