- Timestamp:
- May 20, 2016 9:56:25 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r61078 r61088 2006 2006 if (pApic->enmOriginalMode == APICMODE_DISABLED) 2007 2007 { 2008 LogRel(("APIC%u: Disallowing APIC base MSR write as the VM configis configured with APIC disabled!\n"));2008 LogRel(("APIC%u: Disallowing APIC base MSR write as the VM is configured with APIC disabled!\n")); 2009 2009 return apicMsrAccessError(pVCpu, MSR_IA32_APICBASE, APICMSRACCESS_WRITE_DISALLOWED_CONFIG); 2010 2010 } … … 2055 2055 case APICMODE_X2APIC: 2056 2056 { 2057 if (pApic->enmOriginalMode != APICMODE_X2APIC) 2058 { 2059 LogRel(("APIC%u: Disallowing transition to x2APIC mode as the VM is configured with the x2APIC disabled!\n", 2060 pVCpu->idCpu)); 2061 return apicMsrAccessError(pVCpu, MSR_IA32_APICBASE, APICMSRACCESS_WRITE_INVALID); 2062 } 2063 2057 2064 if (enmOldMode != APICMODE_XAPIC) 2058 2065 {
Note:
See TracChangeset
for help on using the changeset viewer.