diff options
author | Yinghai Lu <yinghai@kernel.org> | 2008-12-26 05:05:47 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-27 07:24:00 -0500 |
commit | 13a0c3c269b223f60abfac8a9811d77111a8b4ba (patch) | |
tree | b57a92eb9eb7c8c1de30bbe29b6a461289e75c62 /init | |
parent | 793f7b12a0c95e7bfec1badf9628043fb78fd440 (diff) |
sparseirq: work around compiler optimizing away __weak functions
Impact: fix panic on null pointer with sparseirq
Some GCC versions seem to inline the weak global function,
when that function is empty.
Work it around, by making the functions return a (dummy) integer.
Signed-off-by: Yinghai <yinghai@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/init/main.c b/init/main.c index c1f999a3cf31..c314aa15370e 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -539,13 +539,14 @@ void __init __weak thread_info_cache_init(void) | |||
539 | { | 539 | { |
540 | } | 540 | } |
541 | 541 | ||
542 | void __init __weak arch_early_irq_init(void) | 542 | int __init __weak arch_early_irq_init(void) |
543 | { | 543 | { |
544 | return 0; | ||
544 | } | 545 | } |
545 | 546 | ||
546 | void __init __weak early_irq_init(void) | 547 | int __init __weak early_irq_init(void) |
547 | { | 548 | { |
548 | arch_early_irq_init(); | 549 | return arch_early_irq_init(); |
549 | } | 550 | } |
550 | 551 | ||
551 | asmlinkage void __init start_kernel(void) | 552 | asmlinkage void __init start_kernel(void) |