VirtualBox

Changeset 24051 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Oct 23, 2009 6:16:50 PM (15 years ago)
Author:
vboxsync
Message:

DevAHCI: even more config verification bugfix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Storage/DevAHCI.cpp

    r24050 r24051  
    61396139            if (fInUse != (pThis->ahciPort[i].pDrvBase != NULL))
    61406140            {
    6141                 LogRel(("AHCI: Port %u config mismatch: fInUse - saved=%RTbool config=%RTbool\n", fInUse, (pThis->ahciPort[i].pDrvBase != NULL)));
     6141                LogRel(("AHCI: Port %u config mismatch: fInUse - saved=%RTbool config=%RTbool\n",
     6142                        i, fInUse, (pThis->ahciPort[i].pDrvBase != NULL)));
    61426143                return VERR_SSM_LOAD_CONFIG_MISMATCH;
    61436144            }
     
    61486149            if (strcmp(szSerialNumber, pThis->ahciPort[i].szSerialNumber))
    61496150                LogRel(("ACHI: Port %u config mismatch: Serial number - saved='%s' config='%s'\n",
    6150                         szSerialNumber, pThis->ahciPort[i].szSerialNumber));
     6151                        i, szSerialNumber, pThis->ahciPort[i].szSerialNumber));
    61516152
    61526153            char szFirmwareRevision[AHCI_FIRMWARE_REVISION_LENGTH+1];
     
    61556156            if (strcmp(szFirmwareRevision, pThis->ahciPort[i].szFirmwareRevision))
    61566157                LogRel(("ACHI: Port %u config mismatch: Firmware revision - saved='%s' config='%s'\n",
    6157                         szFirmwareRevision, pThis->ahciPort[i].szFirmwareRevision));
     6158                        i, szFirmwareRevision, pThis->ahciPort[i].szFirmwareRevision));
    61586159
    61596160            char szModelNumber[AHCI_MODEL_NUMBER_LENGTH+1];
     
    61626163            if (strcmp(szModelNumber, pThis->ahciPort[i].szModelNumber))
    61636164                LogRel(("ACHI: Port %u config mismatch: Model number - saved='%s' config='%s'\n",
    6164                         szModelNumber, pThis->ahciPort[i].szModelNumber));
     6165                        i, szModelNumber, pThis->ahciPort[i].szModelNumber));
    61656166        }
    61666167
Note: See TracChangeset for help on using the changeset viewer.

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