Changeset 15723 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Dec 23, 2008 11:05:27 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41288
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r15722 r15723 1831 1831 /* Mark it as not present again to intercept all read and write access. */ 1832 1832 rc = PGMShwModifyPage(pVM, (RTGCPTR)GCPhys, 1, 0, ~(uint64_t)(X86_PTE_RW|X86_PTE_P)); 1833 Assert RC(rc);1833 Assert(rc == VINF_SUCCESS || rc == VERR_PAGE_NOT_PRESENT || rc == VERR_PAGE_TABLE_NOT_PRESENT); 1834 1834 1835 1835 #ifdef VBOX_STRICT … … 1837 1837 RTHCPHYS HCPhys; 1838 1838 rc = PGMShwGetPage(pVM, (RTGCPTR)GCPhys, &fFlags, &HCPhys); 1839 Assert(rc == VERR_PAGE_NOT_PRESENT );1839 Assert(rc == VERR_PAGE_NOT_PRESENT || rc == VERR_PAGE_TABLE_NOT_PRESENT); 1840 1840 #endif 1841 1841 cb -= PAGE_SIZE;
Note:
See TracChangeset
for help on using the changeset viewer.