Changeset 48209 in vbox
- Timestamp:
- Aug 30, 2013 10:13:19 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_vmx.h
r48208 r48209 859 859 } n; 860 860 uint64_t u; 861 } VMX CAPABILITY;861 } VMX_CAPABILITY; 862 862 #pragma pack() 863 863 /** @} */ -
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r48208 r48209 3419 3419 ) 3420 3420 { 3421 VMX CAPABILITY vtCaps;3421 VMX_CAPABILITY vtCaps; 3422 3422 3423 3423 *pfCaps |= SUPVTCAPS_VT_X; -
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r48208 r48209 124 124 uint64_t u64FeatureCtrl; 125 125 uint64_t u64BasicInfo; 126 VMX CAPABILITYvmxPinCtls;127 VMX CAPABILITYvmxProcCtls;128 VMX CAPABILITYvmxProcCtls2;129 VMX CAPABILITYvmxExit;130 VMX CAPABILITYvmxEntry;126 VMX_CAPABILITY vmxPinCtls; 127 VMX_CAPABILITY vmxProcCtls; 128 VMX_CAPABILITY vmxProcCtls2; 129 VMX_CAPABILITY vmxExit; 130 VMX_CAPABILITY vmxEntry; 131 131 uint64_t u64Misc; 132 132 uint64_t u64Cr0Fixed0; -
trunk/src/VBox/VMM/include/HMInternal.h
r48208 r48209 364 364 uint64_t feature_ctrl; 365 365 uint64_t vmx_basic_info; 366 VMX CAPABILITYvmx_pin_ctls;367 VMX CAPABILITYvmx_proc_ctls;368 VMX CAPABILITYvmx_proc_ctls2;369 VMX CAPABILITYvmx_exit;370 VMX CAPABILITYvmx_entry;366 VMX_CAPABILITY vmx_pin_ctls; 367 VMX_CAPABILITY vmx_proc_ctls; 368 VMX_CAPABILITY vmx_proc_ctls2; 369 VMX_CAPABILITY vmx_exit; 370 VMX_CAPABILITY vmx_entry; 371 371 uint64_t vmx_misc; 372 372 uint64_t vmx_cr0_fixed0;
Note:
See TracChangeset
for help on using the changeset viewer.