Changeset 32481 in vbox
- Timestamp:
- Sep 14, 2010 1:37:53 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r32431 r32481 1106 1106 #ifdef IN_RING0 1107 1107 /* Maximum nr of modifications depends on the page type. */ 1108 if (pPage->enmKind == PGMPOOLKIND_PAE_PT_FOR_PAE_PT) 1108 if ( pPage->enmKind == PGMPOOLKIND_PAE_PT_FOR_PAE_PT 1109 || pPage->enmKind == PGMPOOLKIND_PAE_PT_FOR_32BIT_PT) 1109 1110 cMaxModifications = 4; 1110 1111 else … … 1247 1248 if ( pPage->cModifications >= cMaxModifications 1248 1249 && !fForcedFlush 1249 # if 11250 && (pPage->enmKind == PGMPOOLKIND_PAE_PT_FOR_PAE_PT)1251 # else /* test code */1252 1250 && (pPage->enmKind == PGMPOOLKIND_PAE_PT_FOR_PAE_PT || pPage->enmKind == PGMPOOLKIND_PAE_PT_FOR_32BIT_PT) 1253 # endif1254 1251 && ( fNotReusedNotForking 1255 1252 || ( !pgmPoolMonitorIsReused(pVM, pVCpu, pRegFrame, pDis, pvFault)
Note:
See TracChangeset
for help on using the changeset viewer.