Changeset 31440 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Aug 6, 2010 1:37:23 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64512
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllGst.h
r31178 r31440 488 488 bool const fBigPage = Pde.b.u1Size; 489 489 # else 490 bool const fBigPage = Pde.b.u1Size && !(pState->cr4 & X86_CR4_PSE);490 bool const fBigPage = Pde.b.u1Size && (pState->cr4 & X86_CR4_PSE); 491 491 # endif 492 492 if ( Pde.n.u1Present … … 583 583 { 584 584 /* not-present / invalid. */ 585 Log(("VirtHandler: Not present / invalid Pde=%RX64\n", (uint64_t)Pde.u)); 585 586 for (unsigned cPages = (GST_PT_MASK + 1) - ((GCPtr >> GST_PT_SHIFT) & GST_PT_MASK); 586 587 cPages && iPage < pCur->cPages;
Note:
See TracChangeset
for help on using the changeset viewer.