VirtualBox

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


Ignore:
Timestamp:
Sep 5, 2011 10:53:16 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
73838
Message:

IoLog+DrvDiskIntegrity: Add logging of discard requests

File:
1 edited

Legend:

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

    r38541 r38631  
    569569    if (pThis->hIoLogger)
    570570    {
    571         rc = VDDbgIoLogStart(pThis->hIoLogger, false, VDDBGIOLOGTXDIR_READ, off,
     571        rc = VDDbgIoLogStart(pThis->hIoLogger, false, VDDBGIOLOGREQ_READ, off,
    572572                             cbRead, NULL, &hIoLogEntry);
    573573        AssertRC(rc);
     
    622622        RTSgBufInit(&SgBuf, &Seg, 1);
    623623
    624         rc = VDDbgIoLogStart(pThis->hIoLogger, false, VDDBGIOLOGTXDIR_WRITE, off,
     624        rc = VDDbgIoLogStart(pThis->hIoLogger, false, VDDBGIOLOGREQ_WRITE, off,
    625625                             cbWrite, &SgBuf, &hIoLogEntry);
    626626        AssertRC(rc);
     
    665665    if (pThis->hIoLogger)
    666666    {
    667         int rc2 = VDDbgIoLogStart(pThis->hIoLogger, true, VDDBGIOLOGTXDIR_READ, uOffset,
     667        int rc2 = VDDbgIoLogStart(pThis->hIoLogger, true, VDDBGIOLOGREQ_READ, uOffset,
    668668                                  cbRead, NULL, &pIoReq->hIoLogEntry);
    669669        AssertRC(rc2);
     
    721721        RTSgBufInit(&SgBuf, paSeg, cSeg);
    722722
    723         int rc2 = VDDbgIoLogStart(pThis->hIoLogger, true, VDDBGIOLOGTXDIR_WRITE, uOffset,
     723        int rc2 = VDDbgIoLogStart(pThis->hIoLogger, true, VDDBGIOLOGREQ_WRITE, uOffset,
    724724                                  cbWrite, &SgBuf, &pIoReq->hIoLogEntry);
    725725        AssertRC(rc2);
     
    768768    if (pThis->hIoLogger)
    769769    {
    770         rc = VDDbgIoLogStart(pThis->hIoLogger, true, VDDBGIOLOGTXDIR_FLUSH, 0,
     770        rc = VDDbgIoLogStart(pThis->hIoLogger, true, VDDBGIOLOGREQ_FLUSH, 0,
    771771                             0, NULL, &pIoReq->hIoLogEntry);
    772772        AssertRC(rc);
     
    801801    if (pThis->hIoLogger)
    802802    {
    803         rc = VDDbgIoLogStart(pThis->hIoLogger, false, VDDBGIOLOGTXDIR_FLUSH, 0,
     803        rc = VDDbgIoLogStart(pThis->hIoLogger, false, VDDBGIOLOGREQ_FLUSH, 0,
    804804                             0, NULL, &hIoLogEntry);
    805805        AssertRC(rc);
     
    868868    PDRVDISKINTEGRITY pThis = PDMIMEDIA_2_DRVDISKINTEGRITY(pInterface);
    869869    return pThis->pDrvMedia->pfnGetUuid(pThis->pDrvMedia, pUuid);
     870}
     871
     872/** @copydoc PDMIMEDIA::pfnDiscard */
     873static DECLCALLBACK(int) drvdiskintDiscard(PPDMIMEDIA pInterface, PPDMRANGE paRanges, unsigned cRanges)
     874{
     875    int rc = VINF_SUCCESS;
     876    VDIOLOGENT hIoLogEntry;
     877    PDRVDISKINTEGRITY pThis = PDMIMEDIA_2_DRVDISKINTEGRITY(pInterface);
     878
     879    if (pThis->hIoLogger)
     880    {
     881        rc = VDDbgIoLogStartDiscard(pThis->hIoLogger, false, (PVDRANGE)paRanges, cRanges, &hIoLogEntry);
     882        AssertRC(rc);
     883    }
     884
     885    rc = pThis->pDrvMedia->pfnDiscard(pThis->pDrvMedia, paRanges, cRanges);
     886
     887    if (pThis->hIoLogger)
     888    {
     889        int rc2 = VDDbgIoLogComplete(pThis->hIoLogger, hIoLogEntry, rc, NULL);
     890        AssertRC(rc2);
     891    }
     892
     893    return rc;
    870894}
    871895
     
    10971121
    10981122    pThis->pDrvMediaAsync = PDMIBASE_QUERY_INTERFACE(pBase, PDMIMEDIAASYNC);
     1123
     1124    if (pThis->pDrvMedia->pfnDiscard)
     1125        pThis->IMedia.pfnDiscard = drvdiskintDiscard;
    10991126
    11001127    if (pThis->fCheckConsistency)
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