Changeset 87519 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 1, 2021 9:17:51 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142544
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/APIC.cpp
r86456 r87519 1383 1383 pApic->fSupportsTscDeadline = RT_BOOL(CpuLeaf.uEcx & X86_CPUID_FEATURE_ECX_TSCDEADL); 1384 1384 pApic->fPostedIntrsEnabled = HMR3IsPostedIntrsEnabled(pVM->pUVM); 1385 pApic->fVirtApicRegsEnabled = HMR3 IsVirtApicRegsEnabled(pVM->pUVM);1385 pApic->fVirtApicRegsEnabled = HMR3AreVirtApicRegsEnabled(pVM->pUVM); 1386 1386 1387 1387 LogRel(("APIC: fPostedIntrsEnabled=%RTbool fVirtApicRegsEnabled=%RTbool fSupportsTscDeadline=%RTbool\n", -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r87518 r87519 445 445 * ring-3. The return value of RTThreadPreemptIsPendingTrusty in ring-0 446 446 * determines the default value. */ 447 rc = CFGMR3QueryU32Def(pCfgHm, "MaxResumeLoops", &pVM->hm.s.cMaxResumeLoops , 0 /* set by R0 later */);447 rc = CFGMR3QueryU32Def(pCfgHm, "MaxResumeLoops", &pVM->hm.s.cMaxResumeLoopsCfg, 0 /* set by R0 later */); 448 448 AssertLogRelRCReturn(rc, rc); 449 449 … … 1528 1528 1529 1529 LogRel(("HM: Using VT-x implementation 3.0\n")); 1530 LogRel(("HM: Max resume loops = %u\n", pVM->hm.s.cMaxResumeLoops ));1530 LogRel(("HM: Max resume loops = %u\n", pVM->hm.s.cMaxResumeLoopsCfg)); 1531 1531 LogRel(("HM: Host CR4 = %#RX64\n", pVM->hm.s.vmx.u64HostCr4)); 1532 1532 LogRel(("HM: Host EFER = %#RX64\n", pVM->hm.s.vmx.u64HostMsrEfer)); … … 1797 1797 if (HMIsSubjectToSvmErratum170(&u32Family, &u32Model, &u32Stepping)) 1798 1798 LogRel(("HM: AMD Cpu with erratum 170 family %#x model %#x stepping %#x\n", u32Family, u32Model, u32Stepping)); 1799 LogRel(("HM: Max resume loops = %u\n", pVM->hm.s.cMaxResumeLoops ));1799 LogRel(("HM: Max resume loops = %u\n", pVM->hm.s.cMaxResumeLoopsCfg)); 1800 1800 LogRel(("HM: AMD HWCR MSR = %#RX64\n", pVM->hm.s.svm.u64MsrHwcr)); 1801 1801 LogRel(("HM: AMD-V revision = %#x\n", pVM->hm.s.svm.u32Rev)); … … 2810 2810 2811 2811 /** 2812 * Checks if virtualized APIC registers isenabled.2812 * Checks if virtualized APIC registers are enabled. 2813 2813 * 2814 2814 * When enabled this feature allows the hardware to access most of the … … 2820 2820 * @param pUVM The user mode VM handle. 2821 2821 */ 2822 VMMR3DECL(bool) HMR3 IsVirtApicRegsEnabled(PUVM pUVM)2822 VMMR3DECL(bool) HMR3AreVirtApicRegsEnabled(PUVM pUVM) 2823 2823 { 2824 2824 UVM_ASSERT_VALID_EXT_RETURN(pUVM, false);
Note:
See TracChangeset
for help on using the changeset viewer.