Changeset 24481 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 9, 2009 9:45:54 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54565
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMSavedState.cpp
r24363 r24481 1134 1134 1135 1135 /** 1136 * Saves the RAM configuration. 1137 * 1136 * Saves the RAM configuration. 1137 * 1138 1138 * @returns VBox status code. 1139 1139 * @param pVM The VM handle. … … 1157 1157 /** 1158 1158 * Loads and verifies the RAM configuration. 1159 * 1159 * 1160 1160 * @returns VBox status code. 1161 1161 * @param pVM The VM handle. … … 1181 1181 if ( cbRamHoleCfg != cbRamHoleSaved 1182 1182 || cbRamCfg != cbRamSaved) 1183 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Ram config mismatch: saved=%RX64/%RX32 config=%RX64/%RX32 (RAM/Hole)"), 1183 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Ram config mismatch: saved=%RX64/%RX32 config=%RX64/%RX32 (RAM/Hole)"), 1184 1184 cbRamSaved, cbRamHoleSaved, cbRamCfg, cbRamHoleCfg); 1185 1185 return VINF_SUCCESS; … … 2267 2267 * Old format. 2268 2268 */ 2269 AssertLogRelReturn(!pVM->pgm.s.fRamPreAlloc, VERR_NOT_SUPPORTED); /* can't be detected. */2270 2269 2271 2270 /* Of the page flags, pick up MMIO2 and ROM/RESERVED for the !fHaveBits case.
Note:
See TracChangeset
for help on using the changeset viewer.