Changeset 96295 in vbox
- Timestamp:
- Aug 18, 2022 11:46:02 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_vmx.h
r93963 r96295 532 532 533 533 /** 534 * EPT present mask. 535 * This is common to all EPT page-table entries and does not rely on any CPU 536 * features. 537 */ 538 #define EPT_PRESENT_MASK (EPT_E_READ | EPT_E_WRITE | EPT_E_EXECUTE) 539 540 /** 534 541 * EPT Page Directory Pointer Entry. Bit view. 535 542 * In accordance with the VT-x spec. … … 633 640 /** Bits 12-51 - - EPT - Physical Page number of the next level. */ 634 641 #define EPT_PDPTE_PG_MASK X86_PDPE_PG_MASK 635 /** Bits 12-51 - - EPT - Physical Page number of the next level. */636 #define EPT_PDPTE1G_PG_MASK X86_PDPE _PG_MASK642 /** Bits 30-51 - - EPT - Physical Page number of the 1G large page. */ 643 #define EPT_PDPTE1G_PG_MASK X86_PDPE1G_PG_MASK 637 644 638 645 /** The page shift to get the PDPT index. */
Note:
See TracChangeset
for help on using the changeset viewer.