Changeset 24808 in vbox for trunk/src/VBox/VMM/PGMSavedState.cpp
- Timestamp:
- Nov 19, 2009 6:19:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMSavedState.cpp
r24796 r24808 1803 1803 && cDirtyPagesLong <= 1024) 1804 1804 return VINF_SUCCESS; 1805 1806 1805 if (cDirtyPagesLong <= 256) 1807 1806 return VINF_SUCCESS; 1808 1809 1807 /* !! hack !! */ 1810 if ( cDirtyPagesLong < 4096 1808 if ( cDirtyPagesShort <= 512 1809 && cDirtyPagesLong <= 640 1810 && uPass >= 1024) 1811 return VINF_SUCCESS; 1812 if ( cDirtyPagesShort <= 896 1813 && cDirtyPagesLong <= 1024 1814 && uPass >= 2048) 1815 return VINF_SUCCESS; 1816 if ( cDirtyPagesShort <= 1512 1817 && cDirtyPagesLong <= 1536 1818 && uPass >= 4096) 1819 return VINF_SUCCESS; 1820 if ( cDirtyPagesLong <= 4096 1811 1821 && uPass >= 8192) 1812 1822 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.