Changeset 32106 in vbox
- Timestamp:
- Aug 30, 2010 3:26:16 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r32101 r32106 1072 1072 if (RT_LIKELY(PGM_PAGE_GET_TYPE(pPage) == PGMPAGETYPE_RAM)) 1073 1073 { 1074 unsigned cbPageRange = PAGE_SIZE;1075 1076 1074 /* 1077 1075 * A RAM page. … … 1080 1078 { 1081 1079 case PGM_PAGE_STATE_ALLOCATED: 1082 if ( !PGM_PAGE_IS_WRITTEN_TO(pPage) 1080 if ( !PGM_PAGE_IS_WRITTEN_TO(pPage) /* not very recently updated? */ 1083 1081 && PGM_PAGE_IS_FT_DIRTY(pPage)) 1084 1082 { 1083 unsigned cbPageRange = PAGE_SIZE; 1085 1084 unsigned iPageClean = iPage + 1; 1086 1085 RTGCPHYS GCPhysPage = pRam->GCPhys + iPage * PAGE_SIZE;
Note:
See TracChangeset
for help on using the changeset viewer.