Commit 6760da01 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds

[PATCH] uml: change timer initialization

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: default avatarJeff Dike <jdike@addtoit.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f0ec5e39
...@@ -209,4 +209,4 @@ int __init timer_init(void) ...@@ -209,4 +209,4 @@ int __init timer_init(void)
return(0); return(0);
} }
__initcall(timer_init); arch_initcall(timer_init);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment