VirtualBox

Changeset 20064 in vbox


Ignore:
Timestamp:
May 27, 2009 11:13:16 AM (16 years ago)
Author:
vboxsync
Message:

SyncPage: deal with missing PDE; can be changed behind our back by another VCPU

File:
1 edited

Legend:

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

    r20061 r20064  
    16831683# endif
    16841684    SHWPDE          PdeDst   = *pPdeDst;
    1685     AssertMsg(PdeDst.n.u1Present, ("%p=%llx\n", pPdeDst, (uint64_t)PdeDst.u));
     1685    if (!PdeDst.n.u1Present)
     1686    {
     1687        AssertMsg(pVM->cCPUs > 1, ("%Unexpected missing PDE p=%llx\n", pPdeDst, (uint64_t)PdeDst.u));
     1688        return VINF_SUCCESS;    /* force the instruction to be executed again. */
     1689    }
     1690
    16861691    PPGMPOOLPAGE    pShwPage = pgmPoolGetPage(pPool, PdeDst.u & SHW_PDE_PG_MASK);
    16871692
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