VirtualBox

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


Ignore:
Timestamp:
Sep 11, 2007 12:06:33 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
24373
Message:

Fix incorrect setting of buffer end index if huge ATAPI transfers are
requested.

File:
1 edited

Legend:

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

    r4243 r4706  
    16221622    cbTransfer = RT_MIN(s->cbTotalTransfer, s->cbIOBuffer);
    16231623    cSectors = cbTransfer / s->cbATAPISector;
    1624     Assert(cSectors * s->cbATAPISector == cbTransfer);
     1624    Assert(cSectors * s->cbATAPISector <= cbTransfer);
    16251625    Log(("%s: %d sectors at LBA %d\n", __FUNCTION__, cSectors, s->iATAPILBA));
    16261626
     
    16731673        STAM_COUNTER_ADD(&s->StatBytesRead, s->cbATAPISector * cSectors);
    16741674
     1675        /* The initial buffer end value has been set up based on the total
     1676         * transfer size. But the I/O buffer size limits what can actually be
     1677         * done in one transfer, so set the actual value of the buffer end. */
     1678        s->iIOBufferEnd = cbTransfer;
    16751679        atapiCmdOK(s);
    16761680        s->iATAPILBA += cSectors;
     
    18291833            /* Reply with the same amount of data as the real drive. */
    18301834            s->cbTotalTransfer = cbTransfer;
     1835            /* The initial buffer end value has been set up based on the total
     1836             * transfer size. But the I/O buffer size limits what can actually be
     1837             * done in one transfer, so set the actual value of the buffer end. */
     1838            s->iIOBufferEnd = cbTransfer;
    18311839            if (s->aATAPICmd[0] == SCSI_INQUIRY)
    18321840            {
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