Changeset 48213 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Aug 30, 2013 11:17:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r48212 r48213 147 147 { 148 148 /* HWCR MSR (for diagnostics) */ 149 uint64_t msrHwcr;149 uint64_t u64MsrHwcr; 150 150 151 151 /** SVM revision. */ … … 618 618 { 619 619 /* Read the HWCR MSR for diagnostics. */ 620 g_HvmR0.svm. msrHwcr= ASMRdMsr(MSR_K8_HWCR);620 g_HvmR0.svm.u64MsrHwcr = ASMRdMsr(MSR_K8_HWCR); 621 621 g_HvmR0.svm.fSupported = true; 622 622 } … … 1266 1266 pVM->hm.s.vmx.msr.u64Vmfunc = g_HvmR0.vmx.msr.u64Vmfunc; 1267 1267 pVM->hm.s.vmx.msr.u64EptVpidCaps = g_HvmR0.vmx.msr.u64EptVpidCaps; 1268 pVM->hm.s.svm. msrHwcr = g_HvmR0.svm.msrHwcr;1268 pVM->hm.s.svm.u64MsrHwcr = g_HvmR0.svm.u64MsrHwcr; 1269 1269 pVM->hm.s.svm.u32Rev = g_HvmR0.svm.u32Rev; 1270 1270 pVM->hm.s.svm.u32Features = g_HvmR0.svm.u32Features;
Note:
See TracChangeset
for help on using the changeset viewer.