VirtualBox

Changeset 93913 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Feb 24, 2022 12:04:54 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
150139
Message:

VMM: Comment nits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm/hm_vmx.h

    r93336 r93913  
    420420/** Bits 3-5 - Memory type shift count. */
    421421#define EPT_E_MEMTYPE_SHIFT     3
    422 /** Bits 3-5 - Memory type: UC. */
     422/** Bits 3-5 - Memory type: UC (Uncacheable). */
    423423#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). */
    425425#define EPT_E_MEMTYPE_WC        (UINT64_C(1) << EPT_E_MEMTYPE_SHIFT)
    426426/** Bits 3-5 - Memory type: Invalid (2). */
     
    428428/** Bits 3-5 - Memory type: Invalid (3). */
    429429#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). */
    431431#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). */
    433433#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). */
    435435#define EPT_E_MEMTYPE_WB        (UINT64_C(6) << EPT_E_MEMTYPE_SHIFT)
    436436/** Bits 3-5 - Memory type: Invalid (7). */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette