Changeset 55899 in vbox for trunk/src/VBox/VMM/VMMRC
- Timestamp:
- May 18, 2015 9:47:57 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRC/PDMRCDevice.cpp
r53797 r55899 201 201 pDevIns, pDevIns->iInstance, GCPhys, pvBuf, cbRead)); 202 202 203 int rc = PGMPhysRead(pDevIns->Internal.s.pVMRC, GCPhys, pvBuf, cbRead );203 int rc = PGMPhysRead(pDevIns->Internal.s.pVMRC, GCPhys, pvBuf, cbRead, PGMACCESSORIGIN_DEVICE); 204 204 AssertRC(rc); /** @todo track down the users for this bugger. */ 205 205 … … 216 216 pDevIns, pDevIns->iInstance, GCPhys, pvBuf, cbWrite)); 217 217 218 int rc = PGMPhysWrite(pDevIns->Internal.s.pVMRC, GCPhys, pvBuf, cbWrite );218 int rc = PGMPhysWrite(pDevIns->Internal.s.pVMRC, GCPhys, pvBuf, cbWrite, PGMACCESSORIGIN_DEVICE); 219 219 AssertRC(rc); /** @todo track down the users for this bugger. */ 220 220
Note:
See TracChangeset
for help on using the changeset viewer.