diff options
Diffstat (limited to 'kernel/trace/trace_boot.c')
-rw-r--r-- | kernel/trace/trace_boot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/trace/trace_boot.c b/kernel/trace/trace_boot.c index a7efe3559654..d0a5e50eeff2 100644 --- a/kernel/trace/trace_boot.c +++ b/kernel/trace/trace_boot.c | |||
@@ -62,14 +62,14 @@ static enum print_line_t initcall_print_line(struct trace_iterator *iter) | |||
62 | struct timespec rettime = ktime_to_timespec(it->rettime); | 62 | struct timespec rettime = ktime_to_timespec(it->rettime); |
63 | 63 | ||
64 | if (entry->type == TRACE_BOOT) { | 64 | if (entry->type == TRACE_BOOT) { |
65 | ret = trace_seq_printf(s, "[%5ld.%06ld] calling %s @ %i\n", | 65 | ret = trace_seq_printf(s, "[%5ld.%09ld] calling %s @ %i\n", |
66 | calltime.tv_sec, | 66 | calltime.tv_sec, |
67 | calltime.tv_nsec, | 67 | calltime.tv_nsec, |
68 | it->func, it->caller); | 68 | it->func, it->caller); |
69 | if (!ret) | 69 | if (!ret) |
70 | return TRACE_TYPE_PARTIAL_LINE; | 70 | return TRACE_TYPE_PARTIAL_LINE; |
71 | 71 | ||
72 | ret = trace_seq_printf(s, "[%5ld.%06ld] initcall %s " | 72 | ret = trace_seq_printf(s, "[%5ld.%09ld] initcall %s " |
73 | "returned %d after %lld msecs\n", | 73 | "returned %d after %lld msecs\n", |
74 | rettime.tv_sec, | 74 | rettime.tv_sec, |
75 | rettime.tv_nsec, | 75 | rettime.tv_nsec, |