Changeset 93913 in vbox for trunk/include/VBox
- Timestamp:
- Feb 24, 2022 12:04:54 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150139
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_vmx.h
r93336 r93913 420 420 /** Bits 3-5 - Memory type shift count. */ 421 421 #define EPT_E_MEMTYPE_SHIFT 3 422 /** Bits 3-5 - Memory type: UC . */422 /** Bits 3-5 - Memory type: UC (Uncacheable). */ 423 423 #define EPT_E_MEMTYPE_UC (UINT64_C(0) << EPT_E_MEMTYPE_SHIFT) 424 /** Bits 3-5 - Memory type: WC . */424 /** Bits 3-5 - Memory type: WC (Write Combining). */ 425 425 #define EPT_E_MEMTYPE_WC (UINT64_C(1) << EPT_E_MEMTYPE_SHIFT) 426 426 /** Bits 3-5 - Memory type: Invalid (2). */ … … 428 428 /** Bits 3-5 - Memory type: Invalid (3). */ 429 429 #define EPT_E_MEMTYPE_INVALID_3 (UINT64_C(3) << EPT_E_MEMTYPE_SHIFT) 430 /** Bits 3-5 - Memory type: WT . */430 /** Bits 3-5 - Memory type: WT (Write Through). */ 431 431 #define EPT_E_MEMTYPE_WT (UINT64_C(4) << EPT_E_MEMTYPE_SHIFT) 432 /** Bits 3-5 - Memory type: WP . */432 /** Bits 3-5 - Memory type: WP (Write Protected). */ 433 433 #define EPT_E_MEMTYPE_WP (UINT64_C(5) << EPT_E_MEMTYPE_SHIFT) 434 /** Bits 3-5 - Memory type: WB . */434 /** Bits 3-5 - Memory type: WB (Write Back). */ 435 435 #define EPT_E_MEMTYPE_WB (UINT64_C(6) << EPT_E_MEMTYPE_SHIFT) 436 436 /** Bits 3-5 - Memory type: Invalid (7). */
Note:
See TracChangeset
for help on using the changeset viewer.