[PATCH 2.{4,5}.x] IA64 SN mod_timer fix for kernel/irq.c

Vinay K Nallamothu (vinay-rc@naturesoft.net)
07 May 2003 10:29:54 +0530


irq.c: Remove {del,add}_timer to use mod_timer.

--- linux-2.5.68/arch/ia64/sn/kernel/irq.c 2003-03-25 10:07:20.000000000 +0530
+++ linux-2.5.68-nvk/arch/ia64/sn/kernel/irq.c 2003-05-03 16:14:38.000000000 +0530
@@ -310,9 +310,7 @@
bridge->b_force_always[intr_test_registered[i].slot].intr = 1;
}
}
- del_timer(&intr_test_timer);
- intr_test_timer.expires = jiffies + HZ/100;
- add_timer(&intr_test_timer);
+ mod_timer(&intr_test_timer, jiffies + HZ/100);
}

void

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/