diff options
author | Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | 2009-06-17 19:28:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-18 16:03:57 -0400 |
commit | b99b87f70c7785ab1e253c6220f4b0b57ce3a7f7 (patch) | |
tree | ec5688052334448ec8edd3a1a9cb95cd68501ac7 /init/main.c | |
parent | e24aca672ff06aff0e6a1045efab86043ea5f735 (diff) |
kernel: constructor support
Call constructors (gcc-generated initcall-like functions) during kernel
start and module load. Constructors are e.g. used for gcov data
initialization.
Disable constructor support for usermode Linux to prevent conflicts with
host glibc.
Signed-off-by: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: WANG Cong <xiyou.wangcong@gmail.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Huang Ying <ying.huang@intel.com>
Cc: Li Wei <W.Li@Sun.COM>
Cc: Michael Ellerman <michaele@au1.ibm.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Heiko Carstens <heicars2@linux.vnet.ibm.com>
Cc: Martin Schwidefsky <mschwid2@linux.vnet.ibm.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
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 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/init/main.c b/init/main.c index 0e7aedeaa05f..1a65fdd06318 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -720,6 +720,17 @@ asmlinkage void __init start_kernel(void) | |||
720 | rest_init(); | 720 | rest_init(); |
721 | } | 721 | } |
722 | 722 | ||
723 | /* Call all constructor functions linked into the kernel. */ | ||
724 | static void __init do_ctors(void) | ||
725 | { | ||
726 | #ifdef CONFIG_CONSTRUCTORS | ||
727 | ctor_fn_t *call = (ctor_fn_t *) __ctors_start; | ||
728 | |||
729 | for (; call < (ctor_fn_t *) __ctors_end; call++) | ||
730 | (*call)(); | ||
731 | #endif | ||
732 | } | ||
733 | |||
723 | int initcall_debug; | 734 | int initcall_debug; |
724 | core_param(initcall_debug, initcall_debug, bool, 0644); | 735 | core_param(initcall_debug, initcall_debug, bool, 0644); |
725 | 736 | ||
@@ -800,6 +811,7 @@ static void __init do_basic_setup(void) | |||
800 | usermodehelper_init(); | 811 | usermodehelper_init(); |
801 | driver_init(); | 812 | driver_init(); |
802 | init_irq_proc(); | 813 | init_irq_proc(); |
814 | do_ctors(); | ||
803 | do_initcalls(); | 815 | do_initcalls(); |
804 | } | 816 | } |
805 | 817 | ||