Changeset 85007 in vbox for trunk/src/VBox/Devices/PC/DevIoApic.cpp
- Timestamp:
- Jun 30, 2020 5:19:25 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138905
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevIoApic.cpp
r84868 r85007 24 24 #include <VBox/vmm/hm.h> 25 25 #include <VBox/msi.h> 26 #include <Vbox/pci.h> 26 27 #include <VBox/vmm/pdmdev.h> 27 28 … … 165 166 #define IOAPIC_DIRECT_OFF_DATA 0x10 166 167 #define IOAPIC_DIRECT_OFF_EOI 0x40 /* Newer I/O APIC only. */ 167 168 /** The I/O APIC's Bus:Device:Function. */169 #define IOAPIC_BUS_DEV_FN NIL_PCIBDF170 168 171 169 /* Use PDM critsect for now for I/O APIC locking, see @bugref{8245#c121}. */ … … 657 655 uint32_t const uPinMask = UINT32_C(1) << idxRte; 658 656 if (pThis->uIrr & uPinMask) 659 ioapicSignalIntrForRte(pDevIns, pThis, pThisCC, IOAPIC_BUS_DEV_FN, idxRte);657 ioapicSignalIntrForRte(pDevIns, pThis, pThisCC, VBOX_PCI_BDF_SB_IOAPIC, idxRte); 660 658 661 659 IOAPIC_UNLOCK(pDevIns, pThis, pThisCC); … … 772 770 uint32_t const uPinMask = UINT32_C(1) << idxRte; 773 771 if (pThis->uIrr & uPinMask) 774 ioapicSignalIntrForRte(pDevIns, pThis, pThisCC, IOAPIC_BUS_DEV_FN, idxRte);772 ioapicSignalIntrForRte(pDevIns, pThis, pThisCC, VBOX_PCI_BDF_SB_IOAPIC, idxRte); 775 773 } 776 774 }
Note:
See TracChangeset
for help on using the changeset viewer.