Changeset 19252 in vbox for trunk/src/VBox/VMM/HWACCM.cpp
- Timestamp:
- Apr 29, 2009 9:56:19 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r18941 r19252 459 459 460 460 /* Enable VT-x or AMD-V on all host CPUs. */ 461 rc = SUPCallVMMR0Ex(pVM->pVMR0, VMMR0_DO_HWACC_ENABLE, 0, NULL);461 rc = SUPCallVMMR0Ex(pVM->pVMR0, 0 /* VCPU 0 */, VMMR0_DO_HWACC_ENABLE, 0, NULL); 462 462 if (RT_FAILURE(rc)) 463 463 { … … 828 828 } 829 829 830 rc = SUPCallVMMR0Ex(pVM->pVMR0, VMMR0_DO_HWACC_SETUP_VM, 0, NULL);830 rc = SUPCallVMMR0Ex(pVM->pVMR0, 0 /* VCPU 0 */, VMMR0_DO_HWACC_SETUP_VM, 0, NULL); 831 831 AssertRC(rc); 832 832 if (rc == VINF_SUCCESS) … … 936 936 pVM->hwaccm.s.fNestedPaging = pVM->hwaccm.s.fAllowNestedPaging; 937 937 938 rc = SUPCallVMMR0Ex(pVM->pVMR0, VMMR0_DO_HWACC_SETUP_VM, 0, NULL);938 rc = SUPCallVMMR0Ex(pVM->pVMR0, 0 /* VCPU 0 */, VMMR0_DO_HWACC_SETUP_VM, 0, NULL); 939 939 AssertRC(rc); 940 940 if (rc == VINF_SUCCESS)
Note:
See TracChangeset
for help on using the changeset viewer.