Changeset 14606 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 25, 2008 10:08:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWACCMR0.cpp
r14533 r14606 161 161 HWACCMR0Globals.pfnSetupVM = HWACCMR0DummySetupVM; 162 162 163 #ifndef VBOX_WITH_HYBIRD_32BIT_KERNEL /* paranoia */164 165 163 /* 166 164 * Check for VT-x and AMD-V capabilities 167 165 */ 166 #ifdef VBOX_WITH_HYBIRD_32BIT_KERNEL 167 if ( ASMHasCpuId() 168 && SUPR0GetPagingMode() < SUPPAGINGMODE_AMD64) /* VMON -> #UD in compatability mode; temporary hack. */ 169 #else 168 170 if (ASMHasCpuId()) 171 #endif 169 172 { 170 173 uint32_t u32FeaturesECX; … … 352 355 else 353 356 HWACCMR0Globals.lLastError = VERR_HWACCM_NO_CPUID; 354 355 #endif /* !VBOX_WITH_HYBIRD_32BIT_KERNEL */356 357 357 358 if (HWACCMR0Globals.vmx.fSupported)
Note:
See TracChangeset
for help on using the changeset viewer.