The patch titled uml: change timer initialization has been removed from the -mm tree. Its filename is uml-change-timer-initialization.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Jeff Dike <jdike@xxxxxxxxxxx> inet_init, which schedules, is called before the UML timer_init, which sets up the timer. The result is the interval timers being manipulated before the appropriate signal handlers are established, causing unhandled timers. This is fixed by making timer_init be called earlier. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/kernel/time_kern.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/um/kernel/time_kern.c~uml-change-timer-initialization arch/um/kernel/time_kern.c --- 25/arch/um/kernel/time_kern.c~uml-change-timer-initialization Mon May 1 14:57:48 2006 +++ 25-akpm/arch/um/kernel/time_kern.c Mon May 1 14:57:48 2006 @@ -209,4 +209,4 @@ int __init timer_init(void) return(0); } -__initcall(timer_init); +arch_initcall(timer_init); _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are origin.patch uml-make-copy__user-atomic.patch uml-fix-not_dead_yet-when-directory-is-in-bad-state.patch uml-rename-and-improve-actually_do_remove.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html