Changeset 463 in vbox for trunk/src/VBox
- Timestamp:
- Jan 31, 2007 12:28:42 PM (18 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r332 r463 1061 1061 if (pData->devices[i]) 1062 1062 { 1063 AssertMsgFailed(("New device in slot %#x, %s\n", i, pData->devices[i]->name)); 1063 LogRel(("New device in slot %#x, %s\n", i, pData->devices[i]->name)); 1064 AssertFailed(); 1064 1065 return VERR_SSM_LOAD_CONFIG_MISMATCH; 1065 1066 } … … 1070 1071 if (!pDev) 1071 1072 { 1072 AssertMsgFailed(("Device in slot %#x have been removed!\n", i, pDev->name)); 1073 LogRel(("Device in slot %#x has been removed!\n", i, pDev->name)); 1074 AssertFailed(); 1073 1075 return VERR_SSM_LOAD_CONFIG_MISMATCH; 1074 1076 } … … 1084 1086 || DevTmp.config[1] != pDev->config[1]) 1085 1087 { 1086 AssertMsgFailed(("Device in slot %#x (%s) vendor id mismatch! saved=%.4Vhxs current=%.4Vhxs\n", 1087 i, pDev->name, DevTmp.config, pDev->config)); 1088 LogRel(("Device in slot %#x (%s) vendor id mismatch! saved=%.4Vhxs current=%.4Vhxs\n", 1089 i, pDev->name, DevTmp.config, pDev->config)); 1090 AssertFailed(); 1088 1091 return VERR_SSM_LOAD_CONFIG_MISMATCH; 1089 1092 } -
trunk/src/VBox/VMM/PDM.cpp
r23 r463 540 540 if (!pDevIns) 541 541 { 542 AssertMsgFailed(("Device '%s'/%d not found in current config\n", szDeviceName, iInstance)); 542 LogRel(("Device '%s'/%d not found in current config\n", szDeviceName, iInstance)); 543 AssertFailed(); 543 544 return VERR_SSM_LOAD_CONFIG_MISMATCH; 544 545 } … … 547 548 ) 548 549 { 549 AssertMsgFailed(("u32Sep=%d loaded '%s'/%d configured '%s'/%d\n", 550 u32Sep, szDeviceName, iInstance, pDevIns->pDevReg->szDeviceName, pDevIns->iInstance)); 550 LogRel(("u32Sep=%d loaded '%s'/%d configured '%s'/%d\n", 551 u32Sep, szDeviceName, iInstance, pDevIns->pDevReg->szDeviceName, pDevIns->iInstance)); 552 AssertFailed(); 551 553 return VERR_SSM_LOAD_CONFIG_MISMATCH; 552 554 } … … 558 560 if (pDevIns) 559 561 { 560 AssertMsgFailed(("Device '%s'/%d not found in saved state\n", pDevIns->pDevReg->szDeviceName, pDevIns->iInstance)); 562 LogRel(("Device '%s'/%d not found in saved state\n", pDevIns->pDevReg->szDeviceName, pDevIns->iInstance)); 563 AssertFailed(); 561 564 return VERR_SSM_LOAD_CONFIG_MISMATCH; 562 565 } -
trunk/src/VBox/VMM/PGM.cpp
r108 r463 1521 1521 if (!pMapping) 1522 1522 { 1523 AssertMsgFailed(("Couldn't find mapping: cPTs=%#x szDesc=%s (GCPtr=%VGv)\n", 1524 cPTs, szDesc, GCPtr)); 1523 LogRel(("Couldn't find mapping: cPTs=%#x szDesc=%s (GCPtr=%VGv)\n", 1524 cPTs, szDesc, GCPtr)); 1525 AssertFailed(); 1525 1526 return VERR_SSM_LOAD_CONFIG_MISMATCH; 1526 1527 } … … 1578 1579 || fHaveBits != !!pRam->pvHC) 1579 1580 { 1580 AssertMsgFailed(("Ram range: %VGp-%VGp %VGp bytes %s\n" 1581 "State : %VGp-%VGp %VGp bytes %s\n", 1582 pRam->GCPhys, pRam->GCPhysLast, pRam->cb, pRam->pvHC ? "bits" : "nobits", 1583 GCPhys, GCPhysLast, cb, fHaveBits ? "bits" : "nobits")); 1581 LogRel(("Ram range: %VGp-%VGp %VGp bytes %s\n" 1582 "State : %VGp-%VGp %VGp bytes %s\n", 1583 pRam->GCPhys, pRam->GCPhysLast, pRam->cb, pRam->pvHC ? "bits" : "nobits", 1584 GCPhys, GCPhysLast, cb, fHaveBits ? "bits" : "nobits")); 1585 AssertFailed(); 1584 1586 return VERR_SSM_LOAD_CONFIG_MISMATCH; 1585 1587 } -
trunk/src/VBox/VMM/VMM.cpp
r421 r463 1583 1583 } 1584 1584 1585 AssertMsgFailed(("The stack is not in the same place and it's not empty! GCPtrStackBottom=%VGv pbGCStackBottom=%VGv ESP=%VGv\n", 1586 GCPtrStackBottom, pVM->vmm.s.pbGCStackBottom, GCPtrESP)); 1585 LogRel(("The stack is not in the same place and it's not empty! GCPtrStackBottom=%VGv pbGCStackBottom=%VGv ESP=%VGv\n", 1586 GCPtrStackBottom, pVM->vmm.s.pbGCStackBottom, GCPtrESP)); 1587 AssertFailed(); 1587 1588 return VERR_SSM_LOAD_CONFIG_MISMATCH; 1588 1589 }
Note:
See TracChangeset
for help on using the changeset viewer.