Changeset 30822 in vbox
- Timestamp:
- Jul 14, 2010 11:56:42 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r30821 r30822 3281 3281 * Check that it's not in any of the TLBs. 3282 3282 */ 3283 PVM pVM = (P VM)pvUser;3283 PVM pVM = (PGMR3PHYSCHUNKUNMAPCB()pvUser)->pVM; 3284 3284 for (unsigned i = 0; i < RT_ELEMENTS(pVM->pgm.s.ChunkR3Map.Tlb.aEntries); i++) 3285 3285 if (pVM->pgm.s.ChunkR3Map.Tlb.aEntries[i].pChunk == pChunk) … … 3334 3334 Args.pVM = pVM; 3335 3335 Args.pChunk = NULL; 3336 if (RTAvllU32DoWithAll(&pVM->pgm.s.ChunkR3Map.pAgeTree, true /*fFromLeft*/, pgmR3PhysChunkUnmapCandidateCallback, pVM)) 3337 return Args.pChunk->Core.Key; 3336 if (RTAvllU32DoWithAll(&pVM->pgm.s.ChunkR3Map.pAgeTree, true /*fFromLeft*/, pgmR3PhysChunkUnmapCandidateCallback, &Args)) 3337 { 3338 Assert(Args.pChunk); 3339 if (Args.pChunk) 3340 return Args.pChunk->Core.Key; 3341 } 3338 3342 return INT32_MAX; 3339 3343 }
Note:
See TracChangeset
for help on using the changeset viewer.