VirtualBox

Changeset 15723 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Dec 23, 2008 11:05:27 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
41288
Message:

Another assertion correction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp

    r15722 r15723  
    18311831        /* Mark it as not present again to intercept all read and write access. */
    18321832        rc = PGMShwModifyPage(pVM, (RTGCPTR)GCPhys, 1, 0, ~(uint64_t)(X86_PTE_RW|X86_PTE_P));
    1833         AssertRC(rc);
     1833        Assert(rc == VINF_SUCCESS || rc == VERR_PAGE_NOT_PRESENT || rc == VERR_PAGE_TABLE_NOT_PRESENT);
    18341834
    18351835#ifdef VBOX_STRICT
     
    18371837        RTHCPHYS HCPhys;
    18381838        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);
    18401840#endif
    18411841        cb     -= PAGE_SIZE;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette