Message ID | 1255017566-26220-4-git-send-email-gleb@redhat.com |
---|---|
State | Not Applicable |
Headers | show |
diff --git a/src/acpi.c b/src/acpi.c index dafd8c8..1b4f4c5 100644 --- a/src/acpi.c +++ b/src/acpi.c @@ -196,12 +196,7 @@ struct madt_io_apic * lines start */ } PACKED; -#if CONFIG_KVM -/* IRQs 5,9,10,11 */ #define PCI_ISA_IRQ_MASK 0x0e20 -#else -#define PCI_ISA_IRQ_MASK 0x0000 -#endif struct madt_intsrcovr { APIC_HEADER_DEF
This is what qemu pcbios does since commit da5ff65dc9473e3f069736d38b9a189ea14a67eb. Qemu implements PCI interrupts as active high, but OSes assume that they are active low as per PCI spec. Qemu works without override only because ioapic there doesn't implement polarity bit. Signed-off-by: Gleb Natapov <gleb@redhat.com> --- src/acpi.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-)