Changeset 60761 in vbox
- Timestamp:
- Apr 29, 2016 11:39:41 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106956
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/APIC.cpp
r60752 r60761 1495 1495 { 1496 1496 case APICMODE_DISABLED: 1497 { 1498 /** @todo permanently disabling the APIC won't really work (needs 1499 * fixing in HM, CPUM, PDM and possibly other places). See 1500 * @bugref{8353}. */ 1501 #if 0 1497 1502 pApic->enmOriginalMode = enmOriginalMode; 1498 1503 CPUMClearGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_APIC); 1499 1504 CPUMClearGuestCpuIdFeature(pVM, CPUMCPUIDFEATURE_X2APIC); 1500 1505 break; 1506 #else 1507 return VMR3SetError(pVM->pUVM, VERR_INVALID_PARAMETER, RT_SCR_POS, "APIC mode 'disabled' is not supported yet."); 1508 #endif 1509 } 1501 1510 1502 1511 case APICMODE_X2APIC: … … 1511 1520 1512 1521 default: 1513 return VMR3SetError(pVM->pUVM, VERR_INVALID_ STATE, RT_SRC_POS, "APIC mode %#x unknown.", uOriginalMode);1522 return VMR3SetError(pVM->pUVM, VERR_INVALID_PARAMETER, RT_SRC_POS, "APIC mode %#x unknown.", uOriginalMode); 1514 1523 } 1515 1524
Note:
See TracChangeset
for help on using the changeset viewer.