VirtualBox

Changeset 91931 in vbox


Ignore:
Timestamp:
Oct 21, 2021 10:15:38 AM (3 years ago)
Author:
vboxsync
Message:

VMM: Nested VMX: bugref:10092 Undid the unintentional spacing and "UINT32_C(1)" to "RT_BIT_32(0)" changes in r147734.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/PGMInternal.h

    r91929 r91931  
    23562356#if 0
    23572357/** Effective execute bit (!NX).   */
    2358 #define PGMPTWALK_EFF_X                 RT_BIT_32(0)
     2358#define PGMPTWALK_EFF_X     UINT32_C(1)
    23592359/** Effective read+write access bit. */
    2360 #define PGMPTWALK_EFF_RW                X86_PTE_RW
     2360#define PGMPTWALK_EFF_RW    X86_PTE_RW
    23612361/** Effective user-mode access bit. */
    2362 #define PGMPTWALK_EFF_US                X86_PTE_US
     2362#define PGMPTWALK_EFF_US    X86_PTE_US
    23632363/** Effective write through cache bit. */
    2364 #define PGMPTWALK_EFF_PWT               X86_PTE_PWT
     2364#define PGMPTWALK_EFF_PWT   X86_PTE_PWT
    23652365/** Effective cache disabled bit. */
    2366 #define PGMPTWALK_EFF_PCD               X86_PTE_PCD
     2366#define PGMPTWALK_EFF_PCD   X86_PTE_PCD
    23672367/** Effective accessed bit. */
    2368 #define PGMPTWALK_EFF_A                 X86_PTE_A
     2368#define PGMPTWALK_EFF_A     X86_PTE_A
    23692369/** The dirty bit of the final entry. */
    2370 #define PGMPTWALK_EFF_D                 X86_PTE_D
     2370#define PGMPTWALK_EFF_D     X86_PTE_D
    23712371/** The PAT bit of the final entry. */
    2372 #define PGMPTWALK_EFF_PAT               X86_PTE_PAT
     2372#define PGMPTWALK_EFF_PAT   X86_PTE_PAT
    23732373/** The global bit of the final entry. */
    2374 #define PGMPTWALK_EFF_G                 X86_PTE_G
     2374#define PGMPTWALK_EFF_G     X86_PTE_G
    23752375#endif
    23762376/** Effective execute bit (!NX). */
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