VirtualBox

Changeset 29689 in vbox for trunk/src/VBox/VMM/VMMR0


Ignore:
Timestamp:
May 20, 2010 11:58:53 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
61856
Message:

VT-x is too picky with descriptor attributes in v86 mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HWVMXR0.h

    r28800 r29689  
    221221        rc |= VMXWriteVMCS64(VMX_VMCS64_GUEST_##REG##_BASE,     pCtx->reg##Hid.u64Base);        \
    222222        if ((pCtx->eflags.u32 & X86_EFL_VM))                                                    \
    223             val = pCtx->reg##Hid.Attr.u;                                                        \
     223        {                                                                                       \
     224            /* Must override this or else VT-x will fail with invalid guest state errors. */    \
     225            /* DPL=3, present, code/data, r/w/accessed. */                                      \
     226            val = (pCtx->reg##Hid.Attr.u & ~0xFF) | 0xF3;                                       \
     227        }                                                                                       \
    224228        else                                                                                    \
    225229        if (    CPUMIsGuestInRealModeEx(pCtx)                                                   \
Note: See TracChangeset for help on using the changeset viewer.

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