Changeset 20776 in vbox
- Timestamp:
- Jun 22, 2009 1:09:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/IOM.cpp
r20728 r20776 1662 1662 return VERR_IOM_MMIO_RANGE_NOT_FOUND; 1663 1663 } 1664 AssertMsgReturn(pRange->pDevInsR3 == pDevIns, 1665 ("Not owner! GCPhys=%RGp %RGp LB%#x %s\n", GCPhys, GCPhysStart, cbRange, pRange->pszDesc), 1666 VERR_IOM_NOT_MMIO_RANGE_OWNER); 1667 AssertMsgReturn(pRange->Core.KeyLast <= GCPhysLast, 1668 ("Incomplete R3 range! GCPhys=%RGp %RGp LB%#x %s\n", GCPhys, GCPhysStart, cbRange, pRange->pszDesc), 1669 VERR_IOM_INCOMPLETE_MMIO_RANGE); 1664 AssertMsgReturnStmt(pRange->pDevInsR3 == pDevIns, 1665 ("Not owner! GCPhys=%RGp %RGp LB%#x %s\n", GCPhys, GCPhysStart, cbRange, pRange->pszDesc), 1666 iomUnlock(pVM), 1667 VERR_IOM_NOT_MMIO_RANGE_OWNER); 1668 AssertMsgReturnStmt(pRange->Core.KeyLast <= GCPhysLast, 1669 ("Incomplete R3 range! GCPhys=%RGp %RGp LB%#x %s\n", GCPhys, GCPhysStart, cbRange, pRange->pszDesc), 1670 iomUnlock(pVM), 1671 VERR_IOM_INCOMPLETE_MMIO_RANGE); 1670 1672 1671 1673 /* next */ … … 1699 1701 MMHyperFree(pVM, pRange); 1700 1702 } 1703 1701 1704 iomUnlock(pVM); 1702 1703 1705 return VINF_SUCCESS; 1704 1706 }
Note:
See TracChangeset
for help on using the changeset viewer.