updated on Sat Jan 21 20:03:50 UTC 2012
[aur-mirror.git] / kvm-opensuse / kvm-ioapic.patch
blobd11e3a46762af27a85fe64aa537eb21f8d1b9f83
1 Index: kvm-75/kernel/x86/ioapic.c
2 ===================================================================
3 --- kvm-75.orig/kernel/x86/ioapic.c
4 +++ kvm-75/kernel/x86/ioapic.c
5 @@ -274,7 +274,8 @@ void kvm_ioapic_set_irq(struct kvm_ioapi
7 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
8 entry = ioapic->redirtbl[irq];
9 - level ^= entry.fields.polarity;
10 +// polarity is always active high in qemu
11 +// level ^= entry.fields.polarity;
12 if (!level)
13 ioapic->irr &= ~mask;
14 else {