# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1141 -> 1.1142 # arch/i386/kernel/mpparse.c 1.36 -> 1.37 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/11/17 len.brown@intel.com 1.1142 # [ACPI] fix ACPI/legacy interrupt sharing issue ala 2.6 # http://bugzilla.kernel.org/show_bug.cgi?id=1283 # -------------------------------------------- # diff -Nru a/arch/i386/kernel/mpparse.c b/arch/i386/kernel/mpparse.c --- a/arch/i386/kernel/mpparse.c Mon Nov 17 22:38:38 2003 +++ b/arch/i386/kernel/mpparse.c Mon Nov 17 22:38:38 2003 @@ -1114,7 +1114,7 @@ */ for (i = 0; i < mp_irq_entries; i++) { if ((mp_irqs[i].mpc_dstapic == intsrc.mpc_dstapic) - && (mp_irqs[i].mpc_dstirq == intsrc.mpc_dstirq)) { + && (mp_irqs[i].mpc_srcbusirq == intsrc.mpc_srcbusirq)) { mp_irqs[i] = intsrc; found = 1; break;