- Timestamp:
- Dec 23, 2008 11:03:05 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41287
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r15096 r15722 1782 1782 RTHCPHYS HCPhys; 1783 1783 rc = PGMShwGetPage(pVM, (RTGCPTR)GCPhys, &fFlags, &HCPhys); 1784 Assert(rc == VERR_PAGE_NOT_PRESENT );1784 Assert(rc == VERR_PAGE_NOT_PRESENT || rc == VERR_PAGE_TABLE_NOT_PRESENT); 1785 1785 #endif 1786 1786 1787 1787 /* Mark it as writable and present so reads and writes no longer fault. */ 1788 1788 rc = PGMShwModifyPage(pVM, (RTGCPTR)GCPhys, 1, fPageFlags, ~fPageFlags); 1789 Assert RC(rc);1789 Assert(rc == VINF_SUCCESS || rc == VERR_PAGE_NOT_PRESENT || rc == VERR_PAGE_TABLE_NOT_PRESENT); 1790 1790 1791 1791 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.