diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-13 06:25:51 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-13 06:25:51 -0500 |
commit | 968ea6d80e395cf11a51143cfa1b9a14ada676df (patch) | |
tree | dc2acec8c9bdced33afe1e273ee5e0b0b93d2703 /init | |
parent | 7be7585393d311866653564fbcd10a3232773c0b (diff) | |
parent | 8299608f140ae321e4eb5d1306184265d2b9511e (diff) |
Merge ../linux-2.6-x86
Conflicts:
arch/x86/kernel/io_apic.c
kernel/sched.c
kernel/sched_stats.h
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 1 | ||||
-rw-r--r-- | init/main.c | 46 |
2 files changed, 32 insertions, 15 deletions
diff --git a/init/Kconfig b/init/Kconfig index 7656623f5006..b3782c6d5ede 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -808,6 +808,7 @@ config TRACEPOINTS | |||
808 | 808 | ||
809 | config MARKERS | 809 | config MARKERS |
810 | bool "Activate markers" | 810 | bool "Activate markers" |
811 | depends on TRACEPOINTS | ||
811 | help | 812 | help |
812 | Place an empty function call at each marker site. Can be | 813 | Place an empty function call at each marker site. Can be |
813 | dynamically changed for a probe function. | 814 | dynamically changed for a probe function. |
diff --git a/init/main.c b/init/main.c index 7e117a231af1..9d761aa53296 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -63,6 +63,7 @@ | |||
63 | #include <linux/signal.h> | 63 | #include <linux/signal.h> |
64 | #include <linux/idr.h> | 64 | #include <linux/idr.h> |
65 | #include <linux/ftrace.h> | 65 | #include <linux/ftrace.h> |
66 | #include <trace/boot.h> | ||
66 | 67 | ||
67 | #include <asm/io.h> | 68 | #include <asm/io.h> |
68 | #include <asm/bugs.h> | 69 | #include <asm/bugs.h> |
@@ -539,6 +540,15 @@ void __init __weak thread_info_cache_init(void) | |||
539 | { | 540 | { |
540 | } | 541 | } |
541 | 542 | ||
543 | void __init __weak arch_early_irq_init(void) | ||
544 | { | ||
545 | } | ||
546 | |||
547 | void __init __weak early_irq_init(void) | ||
548 | { | ||
549 | arch_early_irq_init(); | ||
550 | } | ||
551 | |||
542 | asmlinkage void __init start_kernel(void) | 552 | asmlinkage void __init start_kernel(void) |
543 | { | 553 | { |
544 | char * command_line; | 554 | char * command_line; |
@@ -603,6 +613,8 @@ asmlinkage void __init start_kernel(void) | |||
603 | sort_main_extable(); | 613 | sort_main_extable(); |
604 | trap_init(); | 614 | trap_init(); |
605 | rcu_init(); | 615 | rcu_init(); |
616 | /* init some links before init_ISA_irqs() */ | ||
617 | early_irq_init(); | ||
606 | init_IRQ(); | 618 | init_IRQ(); |
607 | pidhash_init(); | 619 | pidhash_init(); |
608 | init_timers(); | 620 | init_timers(); |
@@ -703,31 +715,35 @@ core_param(initcall_debug, initcall_debug, bool, 0644); | |||
703 | int do_one_initcall(initcall_t fn) | 715 | int do_one_initcall(initcall_t fn) |
704 | { | 716 | { |
705 | int count = preempt_count(); | 717 | int count = preempt_count(); |
706 | ktime_t delta; | 718 | ktime_t calltime, delta, rettime; |
707 | char msgbuf[64]; | 719 | char msgbuf[64]; |
708 | struct boot_trace it; | 720 | struct boot_trace_call call; |
721 | struct boot_trace_ret ret; | ||
709 | 722 | ||
710 | if (initcall_debug) { | 723 | if (initcall_debug) { |
711 | it.caller = task_pid_nr(current); | 724 | call.caller = task_pid_nr(current); |
712 | printk("calling %pF @ %i\n", fn, it.caller); | 725 | printk("calling %pF @ %i\n", fn, call.caller); |
713 | it.calltime = ktime_get(); | 726 | calltime = ktime_get(); |
727 | trace_boot_call(&call, fn); | ||
728 | enable_boot_trace(); | ||
714 | } | 729 | } |
715 | 730 | ||
716 | it.result = fn(); | 731 | ret.result = fn(); |
717 | 732 | ||
718 | if (initcall_debug) { | 733 | if (initcall_debug) { |
719 | it.rettime = ktime_get(); | 734 | disable_boot_trace(); |
720 | delta = ktime_sub(it.rettime, it.calltime); | 735 | rettime = ktime_get(); |
721 | it.duration = (unsigned long long) delta.tv64 >> 10; | 736 | delta = ktime_sub(rettime, calltime); |
737 | ret.duration = (unsigned long long) ktime_to_ns(delta) >> 10; | ||
738 | trace_boot_ret(&ret, fn); | ||
722 | printk("initcall %pF returned %d after %Ld usecs\n", fn, | 739 | printk("initcall %pF returned %d after %Ld usecs\n", fn, |
723 | it.result, it.duration); | 740 | ret.result, ret.duration); |
724 | trace_boot(&it, fn); | ||
725 | } | 741 | } |
726 | 742 | ||
727 | msgbuf[0] = 0; | 743 | msgbuf[0] = 0; |
728 | 744 | ||
729 | if (it.result && it.result != -ENODEV && initcall_debug) | 745 | if (ret.result && ret.result != -ENODEV && initcall_debug) |
730 | sprintf(msgbuf, "error code %d ", it.result); | 746 | sprintf(msgbuf, "error code %d ", ret.result); |
731 | 747 | ||
732 | if (preempt_count() != count) { | 748 | if (preempt_count() != count) { |
733 | strlcat(msgbuf, "preemption imbalance ", sizeof(msgbuf)); | 749 | strlcat(msgbuf, "preemption imbalance ", sizeof(msgbuf)); |
@@ -741,7 +757,7 @@ int do_one_initcall(initcall_t fn) | |||
741 | printk("initcall %pF returned with %s\n", fn, msgbuf); | 757 | printk("initcall %pF returned with %s\n", fn, msgbuf); |
742 | } | 758 | } |
743 | 759 | ||
744 | return it.result; | 760 | return ret.result; |
745 | } | 761 | } |
746 | 762 | ||
747 | 763 | ||
@@ -882,7 +898,7 @@ static int __init kernel_init(void * unused) | |||
882 | * we're essentially up and running. Get rid of the | 898 | * we're essentially up and running. Get rid of the |
883 | * initmem segments and start the user-mode stuff.. | 899 | * initmem segments and start the user-mode stuff.. |
884 | */ | 900 | */ |
885 | stop_boot_trace(); | 901 | |
886 | init_post(); | 902 | init_post(); |
887 | return 0; | 903 | return 0; |
888 | } | 904 | } |