diff options
| -rw-r--r-- | init/main.c | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/init/main.c b/init/main.c index 1687b0167c4..1116d2f40cc 100644 --- a/init/main.c +++ b/init/main.c | |||
| @@ -700,10 +700,8 @@ static void __init do_initcalls(void) | |||
| 700 | int result; | 700 | int result; |
| 701 | 701 | ||
| 702 | if (initcall_debug) { | 702 | if (initcall_debug) { |
| 703 | printk("Calling initcall 0x%p", *call); | 703 | print_fn_descriptor_symbol("calling %s()\n", |
| 704 | print_fn_descriptor_symbol(": %s()", | ||
| 705 | (unsigned long) *call); | 704 | (unsigned long) *call); |
| 706 | printk("\n"); | ||
| 707 | t0 = ktime_get(); | 705 | t0 = ktime_get(); |
| 708 | } | 706 | } |
| 709 | 707 | ||
| @@ -713,15 +711,10 @@ static void __init do_initcalls(void) | |||
| 713 | t1 = ktime_get(); | 711 | t1 = ktime_get(); |
| 714 | delta = ktime_sub(t1, t0); | 712 | delta = ktime_sub(t1, t0); |
| 715 | 713 | ||
| 716 | printk("initcall 0x%p", *call); | 714 | print_fn_descriptor_symbol("initcall %s()", |
| 717 | print_fn_descriptor_symbol(": %s()", | ||
| 718 | (unsigned long) *call); | 715 | (unsigned long) *call); |
| 719 | printk(" returned %d.\n", result); | 716 | printk(" returned %d after %Ld msecs\n", result, |
| 720 | 717 | (unsigned long long) delta.tv64 >> 20); | |
| 721 | printk("initcall 0x%p ran for %Ld msecs: ", | ||
| 722 | *call, (unsigned long long)delta.tv64 >> 20); | ||
| 723 | print_fn_descriptor_symbol("%s()\n", | ||
| 724 | (unsigned long) *call); | ||
| 725 | } | 718 | } |
| 726 | 719 | ||
| 727 | if (result && result != -ENODEV && initcall_debug) { | 720 | if (result && result != -ENODEV && initcall_debug) { |
| @@ -737,10 +730,9 @@ static void __init do_initcalls(void) | |||
| 737 | local_irq_enable(); | 730 | local_irq_enable(); |
| 738 | } | 731 | } |
| 739 | if (msg) { | 732 | if (msg) { |
| 740 | printk(KERN_WARNING "initcall at 0x%p", *call); | 733 | print_fn_descriptor_symbol(KERN_WARNING "initcall %s()", |
| 741 | print_fn_descriptor_symbol(": %s()", | ||
| 742 | (unsigned long) *call); | 734 | (unsigned long) *call); |
| 743 | printk(": returned with %s\n", msg); | 735 | printk(" returned with %s\n", msg); |
| 744 | } | 736 | } |
| 745 | } | 737 | } |
| 746 | 738 | ||
