VirtualBox

Changeset 20061 in vbox


Ignore:
Timestamp:
May 27, 2009 9:45:10 AM (15 years ago)
Author:
vboxsync
Message:

Made assertion less strict in SMP mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/PGMAllBth.h

    r19871 r20061  
    815815                        uint64_t fPageShw;
    816816                        rc = PGMShwGetPage(pVCpu, pvFault, &fPageShw, NULL);
    817                         AssertMsg(RT_SUCCESS(rc) && fPageShw & X86_PTE_RW, ("rc=%Rrc fPageShw=%RX64\n", rc, fPageShw));
     817                        AssertMsg((pVM->cCPUs > 1 && rc == VERR_PAGE_NOT_PRESENT) || (RT_SUCCESS(rc) && (fPageShw & X86_PTE_RW)), ("rc=%Rrc fPageShw=%RX64\n", rc, fPageShw));
    818818#   endif /* VBOX_STRICT */
    819819                        STAM_PROFILE_STOP(&pVCpu->pgm.s.StatRZTrap0eTimeOutOfSync, c);
Note: See TracChangeset for help on using the changeset viewer.

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