Changeset 37355 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jun 7, 2011 4:19:43 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72123
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r37354 r37355 2814 2814 2815 2815 /* Force a PGM pool flush as guest ram references have been changed. */ 2816 /** todo; not entirely SMP safe; assuming for now the guest takes care of this internally (not touch mapped mmio while changing the mapping). */ 2816 /** @todo not entirely SMP safe; assuming for now the guest takes care 2817 * of this internally (not touch mapped mmio while changing the 2818 * mapping). */ 2817 2819 PVMCPU pVCpu = VMMGetCpu(pVM); 2818 2820 pVCpu->pgm.s.fSyncFlags |= PGM_SYNC_CLEAR_PGM_POOL; … … 3685 3687 3686 3688 #ifdef PGM_WITH_LARGE_ADDRESS_SPACE_ON_32_BIT_HOST 3689 3687 3690 /** 3688 3691 * Tree enumeration callback for dealing with age rollover. … … 3691 3694 static DECLCALLBACK(int) pgmR3PhysChunkAgeingRolloverCallback(PAVLU32NODECORE pNode, void *pvUser) 3692 3695 { 3693 PGM_LOCK_ASSERT_OWNER(pVM);3694 3695 3696 /* Age compression - ASSUMES iNow == 4. */ 3696 3697 PPGMCHUNKR3MAP pChunk = (PPGMCHUNKR3MAP)pNode; … … 3937 3938 AssertRC(rc); 3938 3939 } 3940 3939 3941 #endif /* PGM_WITH_LARGE_ADDRESS_SPACE_ON_32_BIT_HOST */ 3940 3942
Note:
See TracChangeset
for help on using the changeset viewer.