VirtualBox

Changeset 15722 in vbox for trunk/src


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

Adjusted assertion

File:
1 edited

Legend:

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

    r15096 r15722  
    17821782    RTHCPHYS HCPhys;
    17831783    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);
    17851785#endif
    17861786
    17871787    /* Mark it as writable and present so reads and writes no longer fault. */
    17881788    rc = PGMShwModifyPage(pVM, (RTGCPTR)GCPhys, 1, fPageFlags, ~fPageFlags);
    1789     AssertRC(rc);
     1789    Assert(rc == VINF_SUCCESS || rc == VERR_PAGE_NOT_PRESENT || rc == VERR_PAGE_TABLE_NOT_PRESENT);
    17901790
    17911791    return VINF_SUCCESS;
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