Changeset 6854 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
- Timestamp:
- Feb 7, 2008 7:24:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r6829 r6854 313 313 STAM_COUNTER_INC(&pVM->pgm.s.StatPageReplaceShared); 314 314 pVM->pgm.s.cSharedPages--; 315 /** @todo err.. what about copying the page content? */ 315 316 } 316 317 else … … 319 320 STAM_COUNTER_INC(&pVM->pgm.s.StatPageReplaceZero); 320 321 pVM->pgm.s.cZeroPages--; 322 /** @todo verify that the handy page is zero! */ 321 323 } 322 324 … … 565 567 PPGMPAGE pPage = pTlbe->pPage; 566 568 if (RT_UNLIKELY(pPage->u2State != PGM_PAGE_STATE_ALLOCATED)) 569 { 567 570 rc = pgmPhysPageMakeWritable(pVM, pPage, GCPhys); 571 /** @todo stuff is missing here! */ 572 } 568 573 if (RT_SUCCESS(rc)) 569 574 {
Note:
See TracChangeset
for help on using the changeset viewer.