Changeset 16923 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Feb 18, 2009 4:40:17 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43052
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r16922 r16923 909 909 { 910 910 LogFlow(("pgmPoolIsActiveRootPage found CR3 root\n")); 911 pPage->cModifications = 0; /* reset counter*/911 pPage->cModifications = 1; /* reset counter (can't use 0, or else it will be reinserted in the modified list) */ 912 912 return true; 913 913 } … … 935 935 { 936 936 LogFlow(("pgmPoolIsActiveRootPage found PAE PDPE root\n")); 937 pPage->cModifications = 0; /* reset counter*/937 pPage->cModifications = 1; /* reset counter (can't use 0, or else it will be reinserted in the modified list) */ 938 938 return true; 939 939 }
Note:
See TracChangeset
for help on using the changeset viewer.