Changeset 55851 in vbox
- Timestamp:
- May 13, 2015 2:23:01 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100304
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevACPI.cpp
r53528 r55851 1512 1512 if (pThis->fS1Enabled) 1513 1513 { 1514 LogRel((" Entering S1 power state (powered-on suspend)\n"));1514 LogRel(("ACPI: Entering S1 power state (powered-on suspend)\n")); 1515 1515 rc = acpiR3DoSleep(pThis); 1516 1516 break; 1517 1517 } 1518 LogRel((" Ignoring guest attempt to enter S1 power state (powered-on suspend)!\n"));1518 LogRel(("ACPI: Ignoring guest attempt to enter S1 power state (powered-on suspend)!\n")); 1519 1519 /* fall thru */ 1520 1520 … … 1522 1522 if (pThis->fS4Enabled) 1523 1523 { 1524 LogRel((" Entering S4 power state (suspend to disk)\n"));1524 LogRel(("ACPI: Entering S4 power state (suspend to disk)\n")); 1525 1525 rc = acpiR3DoPowerOff(pThis);/* Same behavior as S5 */ 1526 1526 break; 1527 1527 } 1528 LogRel((" Ignoring guest attempt to enter S4 power state (suspend to disk)!\n"));1528 LogRel(("ACPI: Ignoring guest attempt to enter S4 power state (suspend to disk)!\n")); 1529 1529 /* fall thru */ 1530 1530 1531 1531 case 0x05: /* S5 */ 1532 LogRel((" Entering S5 power state (power down)\n"));1532 LogRel(("ACPI: Entering S5 power state (power down)\n")); 1533 1533 rc = acpiR3DoPowerOff(pThis); 1534 1534 break; … … 1708 1708 if (u32 == ACPI_RESET_REG_VAL) 1709 1709 { 1710 LogRel((" Reset initiated by ACPI\n"));1710 LogRel(("ACPI: Reset initiated by ACPI\n")); 1711 1711 rc = PDMDevHlpVMReset(pDevIns); 1712 1712 } … … 2642 2642 { 2643 2643 /* Note: This is also enforced by DevPcBios.cpp. */ 2644 LogRel((" DevACPI: Clipping cbRamLow=%#RX64 down to 0xffe00000.\n", cbRamLow));2644 LogRel(("ACPI: Clipping cbRamLow=%#RX64 down to 0xffe00000.\n", cbRamLow)); 2645 2645 cbRamLow = UINT32_C(0xffe00000); 2646 2646 } … … 3311 3311 memcpy(&pThis->au8CreatorId[0], &pThis->pu8CustBin[28], 4); 3312 3312 memcpy(&pThis->u32CreatorRev, &pThis->pu8CustBin[32], 4); 3313 LogRel(("Reading custom ACPI table from file '%s' (%d bytes)\n", pszCustBinFile, pThis->cbCustBin)); 3313 LogRel(("ACPI: Reading custom ACPI table from file '%s' (%d bytes)\n", pszCustBinFile, 3314 pThis->cbCustBin)); 3314 3315 } 3315 3316 } -
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r54670 r55851 2176 2176 } 2177 2177 2178 LogRel((" DevAPIC: Re-activating Local APIC\n"));2178 LogRel(("APIC: Re-activating Local APIC\n")); 2179 2179 pDev->pApicHlpR3->pfnChangeFeature(pDev->pDevInsR3, pDev->enmVersion); 2180 2180 … … 2370 2370 * The CPUID feature bit. 2371 2371 */ 2372 LogRel((" DevAPIC: Activating Local APIC\n"));2372 LogRel(("APIC: Activating Local APIC\n")); 2373 2373 pDev->pApicHlpR3->pfnChangeFeature(pDevIns, pDev->enmVersion); 2374 2374
Note:
See TracChangeset
for help on using the changeset viewer.