Changeset 18234 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Mar 25, 2009 1:29:51 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r18232 r18234 1778 1778 VMMDECL(int) IOMMMIOMapMMIO2Page(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysRemapped, uint64_t fPageFlags) 1779 1779 { 1780 Log(("IOMMMIOM odifyPage %RGp -> %RGp flags=%RX64\n", GCPhys, GCPhysRemapped, fPageFlags));1780 Log(("IOMMMIOMapMMIO2Page %RGp -> %RGp flags=%RX64\n", GCPhys, GCPhysRemapped, fPageFlags)); 1781 1781 1782 1782 AssertReturn(fPageFlags == (X86_PTE_RW | X86_PTE_P), VERR_INVALID_PARAMETER); -
trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp
r18230 r18234 987 987 * Replaces an MMIO page with an MMIO2 page. 988 988 * 989 * This is a worker for IOMMMIOM odifyPage that works in a similar way to989 * This is a worker for IOMMMIOMapMMIO2Page that works in a similar way to 990 990 * PGMHandlerPhysicalPageTempOff but for an MMIO page. Since an MMIO page has no 991 991 * backing, the caller must provide a replacement page. For various reasons the
Note:
See TracChangeset
for help on using the changeset viewer.