Changeset 43667 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 17, 2012 11:54:39 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 81448
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r43657 r43667 4382 4382 } 4383 4383 4384 4385 /** 4386 * Called when the ring-3 init phase completes. 4387 * 4388 * @returns VBox status code. 4389 * @param pVM Pointer to the VM. 4390 */ 4391 VMMR3DECL(int) CPUMR3InitCompleted(PVM pVM) 4392 { 4393 for (VMCPUID i = 0; i < pVM->cCpus; i++) 4394 { 4395 /* Cache the APIC base (from the APIC device) once it has been initialized. */ 4396 PDMApicGetBase(&pVM->aCpus[i], &pVM->aCpus[i].cpum.s.Guest.msrApicBase); 4397 Log(("CPUMR3InitCompleted pVM=%p APIC base[%u]=%RX64\n", pVM, (unsigned)i, pVM->aCpus[i].cpum.s.Guest.msrApicBase)); 4398 } 4399 return VINF_SUCCESS; 4400 } 4401 -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r43394 r43667 627 627 { 628 628 /* 629 * CPUM's post-initialization (APIC base MSR caching). 630 */ 631 rc = CPUMR3InitCompleted(pVM); 632 AssertRCReturn(rc, rc); 633 634 /* 629 635 * Set page attributes to r/w for stack pages. 630 636 */
Note:
See TracChangeset
for help on using the changeset viewer.