Changeset 28948 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Apr 30, 2010 9:19:04 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60938
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvDiskIntegrity.cpp
r28902 r28948 405 405 406 406 /* Search for the next one. */ 407 pThis->iNextFreeSlot++;408 407 while (pThis->apReqActive[pThis->iNextFreeSlot].pIoReq) 409 pThis->iNextFreeSlot = pThis->iNextFreeSlot++% RT_ELEMENTS(pThis->apReqActive);408 pThis->iNextFreeSlot = (pThis->iNextFreeSlot+1) % RT_ELEMENTS(pThis->apReqActive); 410 409 } 411 410 … … 526 525 size_t cbRead, void *pvUser) 527 526 { 528 LogFlow(("%s: uOffset=%#llx paSeg=%#p cSeg=%u cbRead=%d \n pvUser=%#p", __FUNCTION__,527 LogFlow(("%s: uOffset=%#llx paSeg=%#p cSeg=%u cbRead=%d pvUser=%#p\n", __FUNCTION__, 529 528 uOffset, paSeg, cSeg, cbRead, pvUser)); 530 529 PDRVDISKINTEGRITY pThis = PDMIMEDIAASYNC_2_DRVDISKINTEGRITY(pInterface); … … 561 560 size_t cbWrite, void *pvUser) 562 561 { 563 LogFlow(("%s: uOffset=%#llx paSeg=%#p cSeg=%u cbWrite=%d \n pvUser=%#p", __FUNCTION__,562 LogFlow(("%s: uOffset=%#llx paSeg=%#p cSeg=%u cbWrite=%d pvUser=%#p\n", __FUNCTION__, 564 563 uOffset, paSeg, cSeg, cbWrite, pvUser)); 565 564 PDRVDISKINTEGRITY pThis = PDMIMEDIAASYNC_2_DRVDISKINTEGRITY(pInterface);
Note:
See TracChangeset
for help on using the changeset viewer.