VirtualBox

Changeset 75412 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Nov 13, 2018 4:06:57 AM (6 years ago)
Author:
vboxsync
Message:

VMM/IEM: Nested VMX: bugref:9180 linux build fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h

    r75397 r75412  
    44334433 * @param   pVCpu       The cross context virtual CPU structure.
    44344434 */
    4435 IEM_STATIC VBOXSTRICTRC iemVmxVmexitPprVirtualization(PVMCPU pVCpu)
     4435IEM_STATIC void iemVmxVmexitPprVirtualization(PVMCPU pVCpu)
    44364436{
    44374437    PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);
     
    44454445
    44464446    uint32_t uVPpr;
    4447     if (((uVTpr >> 4) & 0xf) >= (uSvi >> 4) & 0xf)
     4447    if (((uVTpr >> 4) & 0xf) >= ((uSvi >> 4) & 0xf))
    44484448        uVPpr = uVTpr & 0xff;
    44494449    else
     
    44694469    Assert(pVmcs->u32ProcCtls & VMX_PROC_CTLS_USE_TPR_SHADOW);
    44704470    Assert(!(pVmcs->u32ProcCtls2 & VMX_PROC_CTLS2_VIRT_INT_DELIVERY));    /* We don't support virtual-interrupt delivery yet. */
     4471    /** @todo NSTVMX: When virtual-interrupt delivery is present, call PPR virt. and
     4472     *        evaluate pending virtual interrupts. */
    44714473
    44724474    uint32_t const uTprThreshold = pVmcs->u32TprThreshold;
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