ktime_t t0, t1, delta;
char msgbuf[64];
int result;
+ struct boot_trace it;
if (initcall_debug) {
- printk("calling %pF", fn);
- printk(" @ %i\n", task_pid_nr(current));
+ it.caller = task_pid_nr(current);
+ it.func = fn;
+ printk("calling %pF @ %i\n", fn, it.caller);
t0 = ktime_get();
}
if (initcall_debug) {
t1 = ktime_get();
delta = ktime_sub(t1, t0);
-
- printk("initcall %pF returned %d after %Ld msecs\n",
- fn, result,
- (unsigned long long) delta.tv64 >> 20);
+ it.result = result;
+ it.duration = (unsigned long long) delta.tv64 >> 20;
+ printk("initcall %pF returned %d after %Ld msecs\n", fn,
+ result, it.duration);
+ trace_boot(&it);
}
msgbuf[0] = 0;
smp_prepare_cpus(setup_max_cpus);
do_pre_smp_initcalls();
+ start_boot_trace();
smp_init();
sched_init_smp();