Changeset 4706 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 11, 2007 12:06:33 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24373
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r4243 r4706 1622 1622 cbTransfer = RT_MIN(s->cbTotalTransfer, s->cbIOBuffer); 1623 1623 cSectors = cbTransfer / s->cbATAPISector; 1624 Assert(cSectors * s->cbATAPISector == cbTransfer);1624 Assert(cSectors * s->cbATAPISector <= cbTransfer); 1625 1625 Log(("%s: %d sectors at LBA %d\n", __FUNCTION__, cSectors, s->iATAPILBA)); 1626 1626 … … 1673 1673 STAM_COUNTER_ADD(&s->StatBytesRead, s->cbATAPISector * cSectors); 1674 1674 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; 1675 1679 atapiCmdOK(s); 1676 1680 s->iATAPILBA += cSectors; … … 1829 1833 /* Reply with the same amount of data as the real drive. */ 1830 1834 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; 1831 1839 if (s->aATAPICmd[0] == SCSI_INQUIRY) 1832 1840 {
Note:
See TracChangeset
for help on using the changeset viewer.