VirtualBox

Changeset 107809 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Jan 16, 2025 10:42:42 AM (3 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
166964
Message:

VMM: bugref:10759 Don't route setting/clearing of external interrupts via the APIC when no APIC is present.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/PDMDevMiscHlp.cpp

    r107227 r107809  
    6969#ifdef VBOX_VMM_TARGET_X86
    7070    PVMCPU pVCpu = pVM->apCpusR3[0];  /* for PIC we always deliver to CPU 0, SMP uses APIC */
    71     PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */, 1 /* u8Level */, VINF_SUCCESS /* rcRZ */);
     71    if (pVM->pdm.s.Ic.pDevInsR3)
     72        PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */, 1 /* u8Level */, VINF_SUCCESS /* rcRZ */);
     73    else
     74        VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_PIC);
    7275#else
    7376    AssertReleaseFailed();
     
    8891#ifdef VBOX_VMM_TARGET_X86
    8992    PVMCPU pVCpu = pVM->apCpusR3[0];  /* for PIC we always deliver to CPU 0, SMP uses APIC */
    90     PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */,  0 /* u8Level */, VINF_SUCCESS /* rcRZ */);
     93    if (pVM->pdm.s.Ic.pDevInsR3)
     94        PDMApicSetLocalInterrupt(pVCpu, 0 /* u8Pin */,  0 /* u8Level */, VINF_SUCCESS /* rcRZ */);
     95    else
     96        VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_PIC);
    9197#else
    9298    AssertReleaseFailed();
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