- Timestamp:
- Feb 25, 2009 10:30:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r17112 r17114 913 913 } 914 914 915 # ifndef IN_RING0 915 916 switch (PGMGetShadowMode(pVM)) 916 917 { … … 931 932 for (unsigned i=0;i<X86_PG_PAE_PDPE_ENTRIES;i++) 932 933 { 933 if ( pPdpt->a[i].n.u1Present 934 if ( (pPdpt->a[i].u & PGM_PLXFLAGS_MAPPING) 935 && pPdpt->a[i].n.u1Present 934 936 && pPage->Core.Key == (pPdpt->a[i].u & X86_PDPE_PG_MASK)) 935 937 { … … 946 948 } 947 949 } 948 950 # endif 949 951 return false; 950 952 }
Note:
See TracChangeset
for help on using the changeset viewer.