Changeset 48328 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Sep 5, 2013 10:20:18 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88756
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r48268 r48328 3371 3371 * @returns VBox status code. 3372 3372 * @retval VERR_VMX_NO_VMX 3373 * @retval VERR_VMX_MSR_LOCKED_OR_DISABLED 3373 * @retval VERR_VMX_MSR_SMX_VMXON_DISABLED 3374 * @retval VERR_VMX_MSR_VMXON_DISABLED 3374 3375 * @retval VERR_SVM_NO_SVM 3375 3376 * @retval VERR_SVM_DISABLED … … 3390 3391 *pfCaps = 0; 3391 3392 3393 /** @todo r=ramshankar: Although we're only reading CPUIDs/MSRs here which 3394 * should be identical on all CPUs on the system, it's probably 3395 * cleaner to prevent migration nonetheless? */ 3392 3396 if (ASMHasCpuId()) 3393 3397 { … … 3400 3404 3401 3405 if ( ASMIsValidStdRange(uMaxId) 3402 && ( ASMIsIntelCpuEx( uVendorEBX, uVendorECX, uVendorEDX)3406 && ( ASMIsIntelCpuEx( uVendorEBX, uVendorECX, uVendorEDX) 3403 3407 || ASMIsViaCentaurCpuEx(uVendorEBX, uVendorECX, uVendorEDX) ) 3404 3408 )
Note:
See TracChangeset
for help on using the changeset viewer.