VirtualBox

Changeset 44902 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Mar 2, 2013 2:28:37 AM (12 years ago)
Author:
vboxsync
Message:

Relevant PDMDevHlpPhysWrite changed to PDMDevHlpPCIPhysWrite. If this breaks anything, add PDM_DO_NOT_RESPECT_PCI_BM_BIT to VMM_COMMON_DEFS to disable the feature.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp

    r44898 r44902  
    13571357    PDMDEV_ASSERT_DEVINS(pDevIns);
    13581358
     1359#ifndef PDM_DO_NOT_RESPECT_PCI_BM_BIT
    13591360    /*
    13601361     * Just check the busmaster setting here and forward the request to the generic read helper.
     
    13691370        return VERR_PDM_NOT_PCI_BUS_MASTER;
    13701371    }
     1372#endif
    13711373
    13721374    return pDevIns->pHlpR3->pfnPhysRead(pDevIns, GCPhys, pvBuf, cbRead);
     
    13791381    PDMDEV_ASSERT_DEVINS(pDevIns);
    13801382
     1383#ifndef PDM_DO_NOT_RESPECT_PCI_BM_BIT
    13811384    /*
    13821385     * Just check the busmaster setting here and forward the request to the generic read helper.
     
    13911394        return VERR_PDM_NOT_PCI_BUS_MASTER;
    13921395    }
     1396#endif
    13931397
    13941398    return pDevIns->pHlpR3->pfnPhysWrite(pDevIns, GCPhys, pvBuf, cbWrite);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette