tracing/fastboot: change the printing of boot tracer according to bootgraph.pl

Change the boot tracer printing to make it parsable for
the scripts/bootgraph.pl script.

We have now to output two lines for each initcall, according to the
printk in do_one_initcall() in init/main.c
We need now the call's time and the return's time.

Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Frederic Weisbecker 2008-10-02 12:59:20 +02:00 committed by Ingo Molnar
parent 77ae11f63b
commit cb5ab74204
3 changed files with 26 additions and 18 deletions

View file

@ -216,6 +216,8 @@ struct boot_trace {
initcall_t func;
int result;
unsigned long long duration;
ktime_t calltime;
ktime_t rettime;
};
#ifdef CONFIG_BOOT_TRACER