Changeset 89492 in vbox for trunk/src/VBox
- Timestamp:
- Jun 4, 2021 4:22:04 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuIntel.cpp
r89477 r89492 2078 2078 pIoPageOut->GCPhysBase = GCPhysBase; 2079 2079 pIoPageOut->cShift = cShift; 2080 pIoPageOut->fPerm 2080 pIoPageOut->fPerm = fPerm; 2081 2081 return VINF_SUCCESS; 2082 2082 } … … 2301 2301 if (RT_SUCCESS(rc)) 2302 2302 { 2303 Assert(IoPage.cShift >= X86_PAGE_4K_SHIFT );2303 Assert(IoPage.cShift >= X86_PAGE_4K_SHIFT && IoPage.cShift <= X86_PAGE_1G_SHIFT); 2304 2304 2305 2305 /* Store the translated address before continuing to access more pages. */ … … 2644 2644 } 2645 2645 2646 *pGCPhysSpa = MemReqRemap.Out.AddrRange.uAddr; 2646 2647 *pcbContiguous = MemReqRemap.Out.AddrRange.cb; 2647 *pGCPhysSpa = MemReqRemap.Out.AddrRange.uAddr;2648 2648 return rc; 2649 2649 }
Note:
See TracChangeset
for help on using the changeset viewer.