VirtualBox

Changeset 21926 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Aug 2, 2009 3:47:18 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
50593
Message:

SSM: Added some VMSetError in the most common load failure paths.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/SSM-new.cpp

    r21921 r21926  
    35303530                            {
    35313531                                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);
    35323533                                rc = VERR_SSM_INTEGRITY;
    35333534                                break;
     
    35403541                            LogRel(("SSM: Load exec failed for '%s' instance #%u ! (version %u)\n",
    35413542                                    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);
    35423545                            rc = VERR_SSM_INTEGRITY;
    35433546                            break;
     
    36023605            LogRel(("SSM: Unit at %#llx (%lld): Invalid unit magic: %.*Rhxs!\n",
    36033606                    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);
    36053609        }
    36063610        if (UnitHdr.cbName)
     
    36893693            else
    36903694            {
    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",
    36923696                        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);
    36943698            }
    36953699        }
     
    37013705            LogRel(("SSM: Found no handler for unit '%s' instance #%u!\n", UnitHdr.szName, UnitHdr.u32Instance));
    37023706            //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);
    37043709            /** @todo Read data unit to /dev/null. */
    37053710        }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette