VirtualBox

Changeset 59212 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Dec 22, 2015 1:45:26 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
104838
Message:

HDA: Fixed SSM handling for stream BDLEs.

Location:
trunk/src/VBox/Devices/Audio
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevIchHda.cpp

    r59192 r59212  
    35893589    for (uint32_t i = 0; i < pStrm->State.cBDLE; i++)
    35903590    {
    3591         rc = SSMR3PutStructEx(pSSM, &pStrm->State.paBDLE[i], sizeof(HDABDLE), 0 /*fFlags*/, g_aSSMBDLEStateFields5, NULL);
     3591        rc = SSMR3PutStructEx(pSSM, &pStrm->State.paBDLE[i].State, sizeof(HDABDLESTATE),
     3592                              0 /*fFlags*/, g_aSSMBDLEStateFields5, NULL);
    35923593        AssertRCReturn(rc, rc);
    35933594    }
     
    36733674        /* Since version 4 we store the register count to stay flexible. */
    36743675        case HDA_SSM_VERSION_4:
     3676        case HDA_SSM_VERSION_5:
    36753677        case HDA_SSM_VERSION:
    36763678            rc = SSMR3GetU32(pSSM, &cRegs); AssertRCReturn(rc, rc);
     
    37593761
    37603762        /* Since v5 we support flexible stream and BDLE counts. */
     3763        case HDA_SSM_VERSION_5:
    37613764        case HDA_SSM_VERSION:
    37623765        {
     
    37943797                }
    37953798
     3799                RT_BZERO(pStrm, sizeof(HDASTREAM));
    37963800                rc = SSMR3GetStructEx(pSSM, &pStrm->State, sizeof(HDASTREAMSTATE), 0 /* fFlags */, g_aSSMStreamStateFields5, NULL);
    37973801                AssertRCBreak(rc);
     
    38003804                AssertRCBreak(rc);
    38013805
    3802                 /* Load BDLE states. */
    3803                 for (uint32_t a = 0; a < pStrm->State.cBDLE; a++)
     3806                if (uVersion == HDA_SSM_VERSION_5)
    38043807                {
    3805                     rc = SSMR3GetStructEx(pSSM, &pStrm->State.paBDLE[a].State, sizeof(HDABDLESTATE),
    3806                                           0 /* fFlags */, g_aSSMBDLEStateFields5, NULL);
     3808                    /* v5 did not save the BDLE state correctly, so skip. */
     3809                    rc = SSMR3Skip(pSSM, 0x120 /* sizeof(HDABLDE) in v5 */);
    38073810                    AssertRCBreak(rc);
     3811                }
     3812                else
     3813                {
     3814                    /* Load BDLE states. */
     3815                    for (uint32_t a = 0; a < pStrm->State.cBDLE; a++)
     3816                    {
     3817                        rc = SSMR3GetStructEx(pSSM, &pStrm->State.paBDLE[a].State, sizeof(HDABDLESTATE),
     3818                                              0 /* fFlags */, g_aSSMBDLEStateFields5, NULL);
     3819                        AssertRCBreak(rc);
     3820                    }
    38083821                }
    38093822
  • trunk/src/VBox/Devices/Audio/DevIchHdaCodec.h

    r58900 r59212  
    131131int hdaCodecOpenStream(PHDACODEC pThis, PDMAUDIORECSOURCE enmRecSource, PDMAUDIOSTREAMCFG *pAudioSettings);
    132132
    133 #define HDA_SSM_VERSION   5
     133#define HDA_SSM_VERSION   6
     134/** Introduced dynamic number of streams + stream identifiers for serialization.
     135 *  Bug: Did not save the BDLE states correctly.
     136 *  Those will be skipped on load then. */
     137#define HDA_SSM_VERSION_5 5
     138/** Since this version the number of MMIO registers can be flexible. */
     139#define HDA_SSM_VERSION_4 4
     140#define HDA_SSM_VERSION_3 3
     141#define HDA_SSM_VERSION_2 2
    134142#define HDA_SSM_VERSION_1 1
    135 #define HDA_SSM_VERSION_2 2
    136 #define HDA_SSM_VERSION_3 3
    137 /* Since this version the number of MMIO registers can be flexible. */
    138 #define HDA_SSM_VERSION_4 4
    139143
    140144# ifdef VBOX_WITH_HDA_CODEC_EMU
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