Changeset 32004 in vbox for trunk/src/VBox
- Timestamp:
- Aug 26, 2010 4:07:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r32000 r32004 923 923 * @param pVCpu The VMCPU handle. 924 924 * @param GCPtr The address. 925 * @param uGstPdpe Guest PDPT entry. 925 * @param uGstPdpe Guest PDPT entry. Valid. 926 926 * @param ppPD Receives address of page directory 927 927 */ … … 984 984 985 985 /* The PD was cached or created; hook it up now. */ 986 pPdpe->u |= pShwPage->Core.Key 987 | (uGstPdpe & ~(X86_PDPE_PG_MASK_FULL | X86_PDPE_AVL_MASK | X86_PDPE_PCD | X86_PDPE_PWT)); 986 pPdpe->u |= pShwPage->Core.Key | (uGstPdpe & (X86_PDPE_P | X86_PDPE_A)); 988 987 989 988 # if defined(IN_RC)
Note:
See TracChangeset
for help on using the changeset viewer.