Changeset 37424 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 12, 2011 7:28:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/IOM.cpp
r35346 r37424 112 112 #include <VBox/log.h> 113 113 #include <VBox/err.h> 114 115 #include "IOMInline.h" 114 116 115 117 … … 1538 1540 */ 1539 1541 iomLock(pVM); 1540 PIOMMMIORANGE pRange = iomMMIOGetRange( &pVM->iom.s, GCPhysStart);1542 PIOMMMIORANGE pRange = iomMMIOGetRange(pVM, GCPhysStart); 1541 1543 AssertReturnStmt(pRange, iomUnlock(pVM), VERR_IOM_MMIO_RANGE_NOT_FOUND); 1542 1544 AssertReturnStmt(pRange->pDevInsR3 == pDevIns, iomUnlock(pVM), VERR_IOM_NOT_MMIO_RANGE_OWNER); … … 1594 1596 */ 1595 1597 iomLock(pVM); 1596 PIOMMMIORANGE pRange = iomMMIOGetRange( &pVM->iom.s, GCPhysStart);1598 PIOMMMIORANGE pRange = iomMMIOGetRange(pVM, GCPhysStart); 1597 1599 AssertReturnStmt(pRange, iomUnlock(pVM), VERR_IOM_MMIO_RANGE_NOT_FOUND); 1598 1600 AssertReturnStmt(pRange->pDevInsR3 == pDevIns, iomUnlock(pVM), VERR_IOM_NOT_MMIO_RANGE_OWNER); … … 1648 1650 while (GCPhys <= GCPhysLast && GCPhys >= GCPhysStart) 1649 1651 { 1650 PIOMMMIORANGE pRange = iomMMIOGetRange( &pVM->iom.s, GCPhys);1652 PIOMMMIORANGE pRange = iomMMIOGetRange(pVM, GCPhys); 1651 1653 if (!pRange) 1652 1654 {
Note:
See TracChangeset
for help on using the changeset viewer.