Changeset 45091 in vbox for trunk/src/VBox/VMM/VMMR0/HMR0.cpp
- Timestamp:
- Mar 19, 2013 4:01:32 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84380
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r44577 r45091 505 505 if (g_HvmR0.vmx.fSupported) 506 506 { 507 /* Call the global VT-x initialization routine. */ 508 rc = VMXR0GlobalInit(); 509 if (RT_FAILURE(rc)) 510 g_HvmR0.lLastError = rc; 511 507 512 /* 508 513 * Install the VT-x methods. … … 523 528 * Timer Does Not Count Down at the Rate Specified" erratum. 524 529 */ 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) 527 531 { 528 532 g_HvmR0.vmx.fUsePreemptTimer = true; … … 767 771 } 768 772 } 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 769 781 return rc; 770 782 }
Note:
See TracChangeset
for help on using the changeset viewer.