Changeset 21926 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 2, 2009 3:47:18 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50593
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/SSM-new.cpp
r21921 r21926 3530 3530 { 3531 3531 LogRel(("SSM: Unit '%s' read %lld bytes too much!\n", pszName, i64Diff)); 3532 VMSetError(pVM, rc, RT_SRC_POS, N_("Unit '%s' read %lld bytes too much"), pszName, i64Diff); 3532 3533 rc = VERR_SSM_INTEGRITY; 3533 3534 break; … … 3540 3541 LogRel(("SSM: Load exec failed for '%s' instance #%u ! (version %u)\n", 3541 3542 pszName, UnitHdr.u32Instance, UnitHdr.u32Version)); 3543 VMSetError(pVM, rc, RT_SRC_POS, N_("Load exec failed for '%s' instance #%u (version %u)"), 3544 pszName, UnitHdr.u32Instance, UnitHdr.u32Version); 3542 3545 rc = VERR_SSM_INTEGRITY; 3543 3546 break; … … 3602 3605 LogRel(("SSM: Unit at %#llx (%lld): Invalid unit magic: %.*Rhxs!\n", 3603 3606 offUnit, offUnit, sizeof(UnitHdr.szMagic) - 1, &UnitHdr.szMagic[0])); 3604 return VERR_SSM_INTEGRITY_UNIT_MAGIC; 3607 return VMSetError(pVM, VERR_SSM_INTEGRITY_UNIT_MAGIC, RT_SRC_POS, 3608 N_("Unit at %#llx (%lld): Invalid unit magic"), offUnit, offUnit); 3605 3609 } 3606 3610 if (UnitHdr.cbName) … … 3689 3693 else 3690 3694 { 3691 LogRel(("SSM: LoadExec failed for '%s' instance #%u (version %u ): %Rrc\n",3695 LogRel(("SSM: LoadExec failed for '%s' instance #%u (version %u, phase %#x): %Rrc\n", 3692 3696 UnitHdr.szName, UnitHdr.u32Instance, UnitHdr.u32Version, UnitHdr.u32Phase, rc)); 3693 return rc;3697 return VMSetError(pVM, rc, RT_SRC_POS, N_("Failed to load unit '%s'"), UnitHdr.szName); 3694 3698 } 3695 3699 } … … 3701 3705 LogRel(("SSM: Found no handler for unit '%s' instance #%u!\n", UnitHdr.szName, UnitHdr.u32Instance)); 3702 3706 //if (pSSM->enmAfter != SSMAFTER_DEBUG_IT) 3703 return VERR_SSM_INTEGRITY_UNIT_NOT_FOUND; 3707 return VMSetError(pVM, VERR_SSM_INTEGRITY_UNIT_NOT_FOUND, RT_SRC_POS, 3708 N_("Found no handler for unit '%s' instance #%u"), UnitHdr.szName, UnitHdr.u32Instance); 3704 3709 /** @todo Read data unit to /dev/null. */ 3705 3710 }
Note:
See TracChangeset
for help on using the changeset viewer.