Changeset 26911 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Mar 1, 2010 1:31:38 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58195
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r26907 r26911 507 507 rc = pgmPhysGetPageEx(&pVM->pgm.s, GCPhys, &pPage); 508 508 if ( RT_FAILURE(rc) 509 || PGM_PAGE_GET_TYPE(pPage) != PGMPAGETYPE_RAM 510 || PGM_PAGE_GET_STATE(pPage) == PGM_PAGE_STATE_ALLOCATED)509 || PGM_PAGE_GET_TYPE(pPage) != PGMPAGETYPE_RAM /* Anything other than ram implies monitoring. */ 510 || PGM_PAGE_GET_STATE(pPage) != PGM_PAGE_STATE_ZERO) /* allocated, monitored or shared means we can't use a large page here */ 511 511 { 512 512 LogFlow(("Found page %RGp with wrong attributes (type=%d; state=%d); cancel check. rc=%d\n", GCPhys, PGM_PAGE_GET_TYPE(pPage), PGM_PAGE_GET_STATE(pPage), rc));
Note:
See TracChangeset
for help on using the changeset viewer.