On Tue, Aug 3, 2010 at 8:59 AM, Tvrtko Ursulin <tvrtko.ursulin@xxxxxxxxxx> wrote: > On Tuesday 03 Aug 2010 16:17:20 Tvrtko Ursulin wrote: >> On Tuesday 03 Aug 2010 15:57:03 Tvrtko Ursulin wrote: >> > On Tuesday 03 Aug 2010 15:51:08 Avi Kivity wrote: >> > > On 08/03/2010 12:28 PM, Tvrtko Ursulin wrote: >> > > > I have basically built 2.6.35 with make oldconfig from a working >> > > > 2.6.34. Latter works fine in kvm while 2.6.35 hangs very early. I see >> > > > nothing after grub (have early printk and verbose bootup enabled), >> > > > just a blinking VGA cursor and CPU at 100%. >> > > >> > > Please copy kvm@xxxxxxxxxxxxxxx on kvm issues. >> > > >> > > > CONFIG_PRINTK_TIME=y >> > > >> > > Try disabling this as a workaround. >> > >> > I am in the middle of a bisect run with five builds left to go, currently >> > I have: >> > >> > bad 537b60d17894b7c19a6060feae40299d7109d6e7 >> > good 93c9d7f60c0cb7715890b1f9e159da6f4d1f5a65 >> >> Bisect is looking good, narrowed it to ten revisions, but I am not sure to >> make it to the end today: >> >> bad cb41838bbc4403f7270a94b93a9a0d9fc9c2e7ea >> good 41d59102e146a4423a490b8eca68a5860af4fe1c > > Bisect points the finger to "x86, ioapic: In mpparse use mp_register_ioapic" > (cf7500c0ea133d66f8449d86392d83f840102632), so I am copying Eric. No idea > whether this commit is solely to blame or it is a combined interaction with > KVM, but I am sure you guys will know. > > If you want me to test something else please shout. > please try attached patch, to see if it help. Yinghai
[PATCH] x86: check if apic/pin is shared with legacy one fix system that external device that have io apic on apic0/pin(0-15) also for the io apic out of order system: <6>ACPI: IOAPIC (id[0x10] address[0xfecff000] gsi_base[0]) <6>IOAPIC[0]: apic_id 16, version 0, address 0xfecff000, GSI 0-2 <6>ACPI: IOAPIC (id[0x0f] address[0xfec00000] gsi_base[3]) <6>IOAPIC[1]: apic_id 15, version 0, address 0xfec00000, GSI 3-38 <6>ACPI: IOAPIC (id[0x0e] address[0xfec01000] gsi_base[39]) <6>IOAPIC[2]: apic_id 14, version 0, address 0xfec01000, GSI 39-74 <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 1 global_irq 4 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 5 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 3 global_irq 6 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 4 global_irq 7 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 6 global_irq 9 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 7 global_irq 10 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 8 global_irq 11 low edge) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 12 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 12 global_irq 15 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 13 global_irq 16 dfl dfl) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 17 low edge) <6>ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 18 dfl dfl) after this patch will get apic0, pin0, GSI 0: irq 0+75 apic0, pin1, GSI 1: irq 1+75 apic0, pin2, GSI 2: irq 2 apic1, pin0, GSI 3: irq 3+75 apic1, pin5, GSI 8: irq 8+75 apic1, pin10,GSI 13: irq 13+75 apic1, pin11,GSI 14: irq 14+75 because mp_config_acpi_legacy_irqs will put apic0, pin2, irq2 in mp_irqs... so pin_2_irq_legacy will report 2. irq_to_gsi will still report 2. so it is right. gsi_to_irq will report 2. for 0, 1, 3, 8, 13, 14: still right Signed-off-by: Yinghai Lu <yinghai@xxxxxxxxxx> --- arch/x86/kernel/apic/io_apic.c | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) Index: linux-2.6/arch/x86/kernel/apic/io_apic.c =================================================================== --- linux-2.6.orig/arch/x86/kernel/apic/io_apic.c +++ linux-2.6/arch/x86/kernel/apic/io_apic.c @@ -1013,6 +1013,28 @@ static inline int irq_trigger(int idx) return MPBIOS_trigger(idx); } +static int pin_2_irq_leagcy(int apic, int pin) +{ + int i; + + for (i = 0; i < mp_irq_entries; i++) { + int bus = mp_irqs[i].srcbus; + + if (!test_bit(bus, mp_bus_not_pci)) + continue; + + if (mp_ioapics[apic].apicid != mp_irqs[i].dstapic) + continue; + + if (mp_irqs[i].dstirq != pin) + continue; + + return mp_irqs[i].srcbusirq; + } + + return -1; +} + static int pin_2_irq(int idx, int apic, int pin) { int irq; @@ -1029,10 +1051,13 @@ static int pin_2_irq(int idx, int apic, } else { u32 gsi = mp_gsi_routing[apic].gsi_base + pin; - if (gsi >= NR_IRQS_LEGACY) + if (gsi >= NR_IRQS_LEGACY) { irq = gsi; - else - irq = gsi_top + gsi; + } else { + irq = pin_2_irq_legacy(apic, pin); + if (irq < 0) + irq = gsi_top + gsi; + } } #ifdef CONFIG_X86_32