Changeset 87401 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jan 23, 2021 2:45:29 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142389
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/HMInternal.h
r87389 r87401 884 884 #define VMX_RESTORE_HOST_GDT_READ_ONLY RT_BIT(7) 885 885 #define VMX_RESTORE_HOST_GDT_NEED_WRITABLE RT_BIT(8) 886 #define VMX_RESTORE_HOST_CAN_USE_WRFSBASE_AND_WRGSBASE RT_BIT(9) 886 887 /** 887 888 * This _must_ be the top most bit, so that we can easily that that it and … … 896 897 * @endcode 897 898 */ 898 #define VMX_RESTORE_HOST_REQUIRED RT_BIT( 9)899 #define VMX_RESTORE_HOST_REQUIRED RT_BIT(10) 899 900 /** @} */ 900 901 … … 1037 1038 /** Alignment. */ 1038 1039 uint8_t au8Alignment0[3]; 1039 /** Which host-state bits to restore before being preempted. */ 1040 /** Which host-state bits to restore before being preempted, see 1041 * VMX_RESTORE_HOST_XXX. */ 1040 1042 uint32_t fRestoreHostFlags; 1041 1043 /** Alignment. */ -
trunk/src/VBox/VMM/include/HMInternal.mac
r87389 r87401 93 93 %define VMX_RESTORE_HOST_GDT_READ_ONLY 0080h ;RT_BIT(7) 94 94 %define VMX_RESTORE_HOST_GDT_NEED_WRITABLE 0100h ;RT_BIT(8) 95 %define VMX_RESTORE_HOST_REQUIRED 0200h ;RT_BIT(9) - must be the highest bit! 95 %define VMX_RESTORE_HOST_CAN_USE_WRFSBASE_AND_WRGSBASE 0200h ;RT_BIT(9) 96 %define VMX_RESTORE_HOST_REQUIRED 0400h ;RT_BIT(10) - must be the highest bit! 96 97 struc VMXRESTOREHOST 97 98 .uHostSelDS resw 1
Note:
See TracChangeset
for help on using the changeset viewer.