Changeset 20810 in vbox
- Timestamp:
- Jun 23, 2009 9:27:38 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMShw.h
r20374 r20810 188 188 Assert(!pVCpu->pgm.s.pShwPageCR3R3); 189 189 190 int rc = pgmPoolAlloc(pVM, GCPhysCR3, PGMPOOLKIND_ROOT_NESTED, PGMPOOL_IDX_NESTED_ROOT, GCPhysCR3 >> PAGE_SHIFT, &pNewShwPageCR3 );190 int rc = pgmPoolAlloc(pVM, GCPhysCR3, PGMPOOLKIND_ROOT_NESTED, PGMPOOL_IDX_NESTED_ROOT, GCPhysCR3 >> PAGE_SHIFT, &pNewShwPageCR3, true /* lock page */); 191 191 AssertFatalRC(rc); 192 193 /* Mark the page as locked; disallow flushing. */194 pgmPoolLockPage(pPool, pNewShwPageCR3);195 192 196 193 pVCpu->pgm.s.iShwUser = PGMPOOL_IDX_NESTED_ROOT;
Note:
See TracChangeset
for help on using the changeset viewer.