Changeset 28754 in vbox
- Timestamp:
- Apr 26, 2010 3:18:55 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60636
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r28752 r28754 954 954 955 955 /* The PD was cached or created; hook it up now. */ 956 pPdpe->u 956 pPdpe->u |= pShwPage->Core.Key 957 957 | (pGstPdpe->u & ~(X86_PDPE_PG_MASK | X86_PDPE_AVL_MASK | X86_PDPE_PCD | X86_PDPE_PWT)); 958 958 … … 1074 1074 } 1075 1075 /* The PDPT was cached or created; hook it up now. */ 1076 pPml4e->u = pShwPage->Core.Key1076 pPml4e->u |= pShwPage->Core.Key 1077 1077 | (pGstPml4e->u & ~(X86_PML4E_PG_MASK | X86_PML4E_AVL_MASK | X86_PML4E_PCD | X86_PML4E_PWT)); 1078 1078 … … 1114 1114 } 1115 1115 /* The PD was cached or created; hook it up now. */ 1116 pPdpe->u = pShwPage->Core.Key1116 pPdpe->u |= pShwPage->Core.Key 1117 1117 | (pGstPdpe->u & ~(X86_PDPE_PG_MASK | X86_PDPE_AVL_MASK | X86_PDPE_PCD | X86_PDPE_PWT)); 1118 1118
Note:
See TracChangeset
for help on using the changeset viewer.