# 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.1543 -> 1.1544 # arch/ia64/kernel/irq.c 1.34 -> 1.35 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 04/02/04 mort@green.i.bork.org 1.1544 # Don't debug the timer interrupt in note_interrupt(). This # should allow forward progress on large machine with irqdebug # enabled. # -------------------------------------------- # diff -Nru a/arch/ia64/kernel/irq.c b/arch/ia64/kernel/irq.c --- a/arch/ia64/kernel/irq.c Wed Feb 4 15:43:12 2004 +++ b/arch/ia64/kernel/irq.c Wed Feb 4 15:43:12 2004 @@ -311,6 +311,10 @@ */ static void note_interrupt(int irq, irq_desc_t *desc, irqreturn_t action_ret) { + /* Don't debug the timer interrupt */ + if (irq == IA64_TIMER_VECTOR) + return; + if (action_ret != IRQ_HANDLED) { desc->irqs_unhandled++; if (action_ret != IRQ_NONE)