Changeset 42837 in vbox
- Timestamp:
- Aug 16, 2012 7:16:05 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMSavedState.cpp
r42836 r42837 2666 2666 break; 2667 2667 2668 /* Ballooned pages must be unmarked (live snapshot and 2669 teleportation scenarios). */ 2668 /* 2669 * Ballooned pages must be unmarked (live snapshot and teleportation scenarios) 2670 */ 2670 2671 if (PGM_PAGE_IS_BALLOONED(pPage)) 2671 2672 { … … 2695 2696 pgmPhysReleaseInternalPageMappingLock(pVM, &PgMpLck); 2696 2697 } 2697 /* Free it only if it's not part of a previously 2698 allocated large page (no need to clear the page). */ 2698 /* 2699 * Free it only if it's not part of a previously allocated large page 2700 * (no need to clear the page). 2701 */ 2699 2702 else if ( PGM_PAGE_GET_PDE_TYPE(pPage) != PGM_PAGE_PDE_TYPE_PDE 2700 2703 && PGM_PAGE_GET_PDE_TYPE(pPage) != PGM_PAGE_PDE_TYPE_PDE_DISABLED) … … 2713 2716 break; 2714 2717 2715 /* We don't map ballooned pages in our shadow page tables, let's 2716 just free it if allocated and mark as ballooned. See @bugref{5515}. */ 2718 /* 2719 * We don't map ballooned pages in our shadow page tables, let's just free 2720 * it if allocated and mark as ballooned. See @bugref{5515}. 2721 */ 2717 2722 if (PGM_PAGE_IS_ALLOCATED(pPage)) 2718 2723 {
Note:
See TracChangeset
for help on using the changeset viewer.