Changeset 92685 in vbox for trunk/src/VBox/VMM/include/IEMInternal.h
- Timestamp:
- Dec 2, 2021 5:59:39 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r91263 r92685 921 921 } IEMACCESSCRX; 922 922 923 # ifdef VBOX_WITH_NESTED_HWVIRT_VMX 923 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX 924 /** @name IEM_SLAT_FAIL_XXX - Second-level address translation failure information. 925 * 926 * These flags provide further context to SLAT page-walk failures that could not be 927 * determined by PGM (e.g, PGM is not privy to memory access permissions). 928 * 929 * @{ 930 */ 931 /** Translating a nested-guest linear address failed accessing a nested-guest 932 * physical address. */ 933 # define IEM_SLAT_FAIL_LINEAR_TO_PHYS_ADDR RT_BIT_32(0) 934 /** Translating a nested-guest linear address failed accessing a 935 * paging-structure entry. */ 936 # define IEM_SLAT_FAIL_LINEAR_TO_PAGE_TABLE RT_BIT_32(1) 937 /** @} */ 938 924 939 PGM_ALL_CB2_PROTO(FNPGMPHYSHANDLER) iemVmxApicAccessPageHandler; 925 # 940 #endif 926 941 927 942 /**
Note:
See TracChangeset
for help on using the changeset viewer.