- Timestamp:
- Mar 26, 2010 3:28:11 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r27749 r27750 1367 1367 } 1368 1368 else 1369 if ( !PGM_PAGE_IS_ZERO(pPage) 1370 && !PGM_PAGE_IS_BALLOONED(pPage)) 1369 if (PGM_PAGE_IS_BALLOONED(pPage)) 1370 { 1371 /* Turn into a zero page; the balloon status is lost when the VM reboots. */ 1372 PGM_PAGE_SET_STATE(pPage, PGM_PAGE_STATE_ZERO); 1373 } 1374 else 1375 if (!PGM_PAGE_IS_ZERO(pPage)) 1371 1376 { 1372 1377 rc = pgmPhysFreePage(pVM, pReq, &cPendingPages, pPage, pRam->GCPhys + ((RTGCPHYS)iPage << PAGE_SHIFT));
Note:
See TracChangeset
for help on using the changeset viewer.