The patch titled uml: change timer initialization has been added to the -mm tree. Its filename is uml-change-timer-initialization.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this 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 uml-change-timer-initialization.patch uml-fix-iomem-list-traversal.patch uml-skas0-support-for-2g-2g-hosts.patch uml-remove-null-checks-and-add-some-codingstyle.patch uml-clean-up-after-madvise_remove.patch uml-update-defconfig.patch uml-error-handling-fixes.patch uml-fix-patch-mismerge.patch uml-search-from-uml_net-in-a-more-reasonable-path.patch uml-use-kbuild-tracking-for-all-files-and-fix-compilation-output.patch uml-fix-compilation-and-execution-with-hardened-gcc.patch uml-cleanup-unprofile-expression-and-build-infrastructure.patch uml-export-symbols-added-by-gcc-hardened.patch uml-uml-makefile-nicer-uses-symlink-incorrectly.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