Searched defs:pSubPage (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPhys.cpp741 PPGMPAGE pSubPage; local
742 rc = pgmPhysGetPageEx(pVM, GCPhys, &pSubPage);
744 || PGM_PAGE_GET_TYPE(pSubPage) != PGMPAGETYPE_RAM /* Anything other than ram implies monitoring. */
745 || PGM_PAGE_GET_STATE(pSubPage) != PGM_PAGE_STATE_ZERO) /* Allocated, monitored or shared means we can't use a large page here */
747 LogFlow(("Found page %RGp with wrong attributes (type=%d; state=%d); cancel check. rc=%d\n", GCPhys, PGM_PAGE_GET_TYPE(pSubPage), PGM_PAGE_GET_STATE(pSubPage), rc));
750 Assert(PGM_PAGE_GET_PDE_TYPE(pSubPage) == PGM_PAGE_PDE_TYPE_DONTCARE);

Completed in 60 milliseconds