Changeset 16422 in vbox for trunk/src/VBox
- Timestamp:
- Jan 30, 2009 3:21:17 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42286
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r16408 r16422 421 421 VMMR3DisableSwitcher(pVM); 422 422 423 if (pVM->hwaccm.s.fNestedPaging) 424 { 425 /* Reinit the paging mode to force the new shadow mode. */ 426 PGMR3ChangeMode(pVM, PGMMODE_REAL); 427 } 423 /* Reinit the paging mode to force the new shadow mode. */ 424 PGMR3ChangeMode(pVM, PGMMODE_REAL); 428 425 } 429 426 -
trunk/src/VBox/VMM/PGM.cpp
r16421 r16422 1539 1539 } 1540 1540 rc = pgmR3ModeDataInit(pVM, false /* don't resolve GC and R0 syms yet */); 1541 #ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY1542 1541 if (RT_SUCCESS(rc)) 1543 1542 rc = PGMR3ChangeMode(pVM, PGMMODE_REAL); 1544 #endif1545 1543 if (RT_SUCCESS(rc)) 1546 1544 { … … 1958 1956 pVM->pgm.s.GCPhys4MBPSEMask = RT_BIT_64(32) - 1; 1959 1957 1960 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY1961 rc = PGMR3ChangeMode(pVM, PGMMODE_REAL);1962 AssertRC(rc);1963 #endif1964 1958 LogRel(("PGMR3InitFinalize: 4 MB PSE mask %RGp\n", pVM->pgm.s.GCPhys4MBPSEMask)); 1965 1966 1959 return rc; 1967 1960 }
Note:
See TracChangeset
for help on using the changeset viewer.