Changeset 17123 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Feb 25, 2009 12:20:29 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
r17122 r17123 524 524 #endif /* defined(VBOX_STRICT) && !defined(IN_RING0) */ 525 525 526 #ifndef IN_RING0 526 527 /** 527 528 * Apply the hypervisor mappings to the active CR3. … … 548 549 Log4(("PGMMapActivateAll fixed mappings=%d\n", pVM->pgm.s.fMappingsFixed)); 549 550 550 #ifdef IN_RING0551 AssertFailed();552 return VERR_INTERNAL_ERROR;553 #else554 551 # ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 555 552 Assert(pVM->pgm.s.CTX_SUFF(pShwPageCR3)); … … 566 563 } 567 564 return VINF_SUCCESS; 568 #endif /* IN_RING0 */569 565 } 570 566 … … 592 588 Log(("PGMMapDeactivateAll fixed mappings=%d\n", pVM->pgm.s.fMappingsFixed)); 593 589 594 #ifdef IN_RING0595 AssertFailed();596 return VERR_INTERNAL_ERROR;597 #else598 590 # ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 599 591 Assert(pVM->pgm.s.CTX_SUFF(pShwPageCR3)); … … 610 602 } 611 603 return VINF_SUCCESS; 612 #endif /* IN_RING0 */613 604 } 614 605 … … 636 627 return VINF_SUCCESS; 637 628 638 #ifdef IN_RING0639 AssertFailed();640 return VERR_INTERNAL_ERROR;641 #else642 629 # ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 643 630 Assert(pVM->pgm.s.CTX_SUFF(pShwPageCR3)); … … 654 641 } 655 642 return VINF_SUCCESS; 656 #endif /* IN_RING0 */ 657 } 658 659 #ifndef IN_RING0 643 } 644 660 645 /** 661 646 * Checks guest PD for conflicts with VMM GC mappings.
Note:
See TracChangeset
for help on using the changeset viewer.