- Timestamp:
- Jan 30, 2009 2:00:01 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42274
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
r16414 r16415 298 298 299 299 default: 300 ; 300 AssertFailed(); 301 break; 301 302 } 302 303 } … … 358 359 359 360 default: 360 ; 361 AssertFailed(); 362 break; 361 363 } 362 364 } … … 378 380 379 381 Assert(PGMGetGuestMode(pVM) >= PGMMODE_32_BIT && PGMGetGuestMode(pVM) <= PGMMODE_PAE_NX); 382 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 383 if (!pPGM->CTX_SUFF(pShwPageCR3)) 384 return VINF_SUCCESS; /* too early */ 385 #endif 380 386 381 387 /* … … 408 414 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 409 415 Assert(PGMGetGuestMode(pVM) >= PGMMODE_32_BIT && PGMGetGuestMode(pVM) <= PGMMODE_PAE_NX); 416 417 if (!pPGM->CTX_SUFF(pShwPageCR3)) 418 return VINF_SUCCESS; /* too early */ 410 419 #endif 411 420
Note:
See TracChangeset
for help on using the changeset viewer.