- Timestamp:
- Apr 8, 2010 9:01:25 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvDiskIntegrity.cpp
r28114 r28115 164 164 { 165 165 int rc = VINF_SUCCESS; 166 167 LogFlowFunc(("pThis=%#p paSeg=%#p cSeg=%u off=%llx cbWrite=%u\n", 168 pThis, paSeg, cSeg, off, cbWrite)); 166 169 167 170 /* Update the segments */ … … 278 281 int rc = VINF_SUCCESS; 279 282 283 LogFlowFunc(("pThis=%#p paSeg=%#p cSeg=%u off=%llx cbRead=%u\n", 284 pThis, paSeg, cSeg, off, cbRead)); 285 280 286 Assert(off % 512 == 0); 281 287 Assert(cbRead % 512 == 0); … … 523 529 int rc = VINF_SUCCESS; 524 530 531 LogFlowFunc(("pIoReq=%#p\n", pIoReq)); 532 525 533 if (pIoReq->fRead) 526 534 rc = drvdiskintReadVerify(pThis, pIoReq->paSeg, pIoReq->cSeg, pIoReq->off, pIoReq->cbTransfer); … … 548 556 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase); 549 557 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMEDIA, &pThis->IMedia); 550 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMEDIAASYNCPORT, pThis->pDrvMediaAsync ? &pThis->IMediaAsyncPort : NULL); 558 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMEDIAASYNC, pThis->pDrvMediaAsync ? &pThis->IMediaAsync : NULL); 559 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMEDIAASYNCPORT, &pThis->IMediaAsyncPort); 551 560 return NULL; 552 561 }
Note:
See TracChangeset
for help on using the changeset viewer.