Changeset 77240 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 10, 2019 4:34:51 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128747
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMPool.cpp
r76553 r77240 743 743 for (unsigned i = 0; i < RT_ELEMENTS(pPool->aDirtyPages); i++) 744 744 { 745 PPGMPOOLPAGE pPage; 746 unsigned idxPage; 747 748 if (pPool->aDirtyPages[i].uIdx == NIL_PGMPOOL_IDX) 745 unsigned idxPage = pPool->aidxDirtyPages[i]; 746 if (idxPage == NIL_PGMPOOL_IDX) 749 747 continue; 750 748 751 idxPage = pPool->aDirtyPages[i].uIdx; 752 AssertRelease(idxPage != NIL_PGMPOOL_IDX); 753 pPage = &pPool->aPages[idxPage]; 749 PPGMPOOLPAGE pPage = &pPool->aPages[idxPage]; 754 750 Assert(pPage->idx == idxPage); 755 751 Assert(pPage->iMonitoredNext == NIL_PGMPOOL_IDX && pPage->iMonitoredPrev == NIL_PGMPOOL_IDX); … … 764 760 pPage->fDirty = false; 765 761 766 pPool->a DirtyPages[i].uIdx= NIL_PGMPOOL_IDX;762 pPool->aidxDirtyPages[i] = NIL_PGMPOOL_IDX; 767 763 } 768 764
Note:
See TracChangeset
for help on using the changeset viewer.