VirtualBox

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


Ignore:
Timestamp:
Aug 2, 2009 5:20:20 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
50595
Message:

PGM: Fixed restore bug where pgmR3LoadLocked left a 32-bit ~0U behind.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/PGM.cpp

    r21168 r21928  
    26592659static int pgmR3LoadLocked(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version)
    26602660{
     2661    PPGM        pPGM = &pVM->pgm.s;
    26612662    int         rc;
    2662     PPGM        pPGM = &pVM->pgm.s;
    26632663    uint32_t    u32Sep;
    26642664
     
    26712671        AssertLogRelRCReturn(rc, rc);
    26722672
    2673         for (unsigned i=0;i<pVM->cCPUs;i++)
     2673        for (VMCPUID i = 0; i < pVM->cCPUs; i++)
    26742674        {
    2675             PVMCPU pVCpu = &pVM->aCpus[i];
    2676 
    2677             rc = SSMR3GetStruct(pSSM, &pVCpu->pgm.s, &s_aPGMCpuFields[0]);
     2675            rc = SSMR3GetStruct(pSSM, &pVM->aCpus[i].pgm.s, &s_aPGMCpuFields[0]);
    26782676            AssertLogRelRCReturn(rc, rc);
    26792677        }
    26802678    }
    2681     else
    2682     if (u32Version >= PGM_SAVED_STATE_VERSION_RR_DESC)
    2683     {
     2679    else if (u32Version >= PGM_SAVED_STATE_VERSION_RR_DESC)
     2680    {
     2681        AssertRelease(pVM->cCPUs == 1);
     2682
    26842683        PGMOLD pgmOld;
    2685 
    2686         AssertRelease(pVM->cCPUs == 1);
    2687 
    26882684        rc = SSMR3GetStruct(pSSM, &pgmOld, &s_aPGMFields_Old[0]);
    26892685        AssertLogRelRCReturn(rc, rc);
     
    27852781     */
    27862782    i = 0;
    2787     for (PPGMRAMRANGE pRam = pPGM->pRamRangesR3; pRam; pRam = pRam->pNextR3, i++)
    2788     {
    2789         /** @todo MMIO ranges may move (PCI reconfig), we currently assume they don't. */
    2790 
     2783    for (PPGMRAMRANGE pRam = pPGM->pRamRangesR3; ; pRam = pRam->pNextR3, i++)
     2784    {
    27912785        /* Check the seqence number / separator. */
    27922786        rc = SSMR3GetU32(pSSM, &u32Sep);
     
    28002794            return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
    28012795        }
     2796        AssertLogRelReturn(pRam, VERR_SSM_DATA_UNIT_FORMAT_CHANGED);
    28022797
    28032798        /* Get the range details. */
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