Changeset 4564 in vbox
- Timestamp:
- Sep 6, 2007 11:11:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMDevice.cpp
r4558 r4564 3266 3266 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, GCPhys, cbRange, ppvHC)); 3267 3267 3268 if (!VM_IS_EMT(pDevIns->Internal.s.pVMHC)) 3269 return VERR_ACCESS_DENIED; 3270 3268 3271 int rc = PGMPhysGCPhys2HCPtr(pDevIns->Internal.s.pVMHC, GCPhys, cbRange, ppvHC); 3269 3272 … … 3283 3286 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, GCPtr, pHCPtr)); 3284 3287 3288 if (!VM_IS_EMT(pDevIns->Internal.s.pVMHC)) 3289 return VERR_ACCESS_DENIED; 3290 3285 3291 int rc = PGMPhysGCPtr2HCPtr(pVM, GCPtr, pHCPtr); 3286 3292 … … 3298 3304 LogFlow(("pdmR3DevHlp_PhysGCPtr2GCPhys: caller='%s'/%d: GCPtr=%VGv pGCPhys=%p\n", 3299 3305 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, GCPtr, pGCPhys)); 3306 3307 if (!VM_IS_EMT(pDevIns->Internal.s.pVMHC)) 3308 return VERR_ACCESS_DENIED; 3300 3309 3301 3310 int rc = PGMPhysGCPtr2GCPhys(pVM, GCPtr, pGCPhys);
Note:
See TracChangeset
for help on using the changeset viewer.