- Timestamp:
- Nov 10, 2009 12:33:01 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54663
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r24077 r24542 2251 2251 static DECLCALLBACK(void) pgmR3ResetNoMorePhysWritesFlag(PVM pVM, VMSTATE enmState, VMSTATE enmOldState, void *pvUser) 2252 2252 { 2253 if (enmState == VMSTATE_RUNNING) 2253 if ( enmState == VMSTATE_RUNNING 2254 || enmState == VMSTATE_RESUMING) 2254 2255 pVM->pgm.s.fNoMorePhysWrites = false; 2255 2256 } … … 3028 3029 #if HC_ARCH_BITS == 32 3029 3030 /* The nested shadow paging mode for AMD-V does change when running 64 bits guests on 32 bits hosts; typically PAE <-> AMD64 */ 3030 const bool fForceShwEnterExit = ( fIsOldGuestPagingMode64Bits != fIsNewGuestPagingMode64Bits 3031 const bool fForceShwEnterExit = ( fIsOldGuestPagingMode64Bits != fIsNewGuestPagingMode64Bits 3031 3032 && enmShadowMode == PGMMODE_NESTED); 3032 3033 #else
Note:
See TracChangeset
for help on using the changeset viewer.