diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-02-16 04:28:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-16 11:13:59 -0500 |
commit | 906568c9c668ff994f4078932ec6ae1e3950d1af (patch) | |
tree | 825ac33fc61af55a0fe7485a1df681f5a6126d7b /init/main.c | |
parent | d316c57ff6bfad9557462b9100f25c6260d2b774 (diff) |
[PATCH] tick-management: core functionality
With Ingo Molnar <mingo@elte.hu>
The tick-management code is the first user of the clockevents layer. It takes
clock event devices from the clock events core and uses them to provide the
periodic tick.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: john stultz <johnstul@us.ibm.com>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init/main.c')
-rw-r--r-- | init/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init/main.c b/init/main.c index 2421e1544127..953500b02ac4 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <linux/cpu.h> | 40 | #include <linux/cpu.h> |
41 | #include <linux/cpuset.h> | 41 | #include <linux/cpuset.h> |
42 | #include <linux/efi.h> | 42 | #include <linux/efi.h> |
43 | #include <linux/tick.h> | ||
43 | #include <linux/taskstats_kern.h> | 44 | #include <linux/taskstats_kern.h> |
44 | #include <linux/delayacct.h> | 45 | #include <linux/delayacct.h> |
45 | #include <linux/unistd.h> | 46 | #include <linux/unistd.h> |
@@ -515,6 +516,7 @@ asmlinkage void __init start_kernel(void) | |||
515 | * enable them | 516 | * enable them |
516 | */ | 517 | */ |
517 | lock_kernel(); | 518 | lock_kernel(); |
519 | tick_init(); | ||
518 | boot_cpu_init(); | 520 | boot_cpu_init(); |
519 | page_address_init(); | 521 | page_address_init(); |
520 | printk(KERN_NOTICE); | 522 | printk(KERN_NOTICE); |