]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/trace/trace_boot.c
Merge branches 'tracing/ftrace', 'tracing/markers', 'tracing/mmiotrace', 'tracing...
[mirror_ubuntu-artful-kernel.git] / kernel / trace / trace_boot.c
CommitLineData
d13744cd
FW
1/*
2 * ring buffer based initcalls tracer
3 *
4 * Copyright (C) 2008 Frederic Weisbecker <fweisbec@gmail.com>
5 *
6 */
7
8#include <linux/init.h>
9#include <linux/debugfs.h>
10#include <linux/ftrace.h>
5601020f 11#include <linux/kallsyms.h>
d13744cd
FW
12
13#include "trace.h"
14
15static struct trace_array *boot_trace;
16static int trace_boot_enabled;
17
18
19/* Should be started after do_pre_smp_initcalls() in init/main.c */
20void start_boot_trace(void)
21{
22 trace_boot_enabled = 1;
23}
24
097d036a 25void stop_boot_trace(void)
d13744cd
FW
26{
27 trace_boot_enabled = 0;
28}
29
097d036a
FW
30void reset_boot_trace(struct trace_array *tr)
31{
32 stop_boot_trace();
33}
34
d13744cd
FW
35static void boot_trace_init(struct trace_array *tr)
36{
37 int cpu;
38 boot_trace = tr;
39
40 trace_boot_enabled = 0;
41
42 for_each_cpu_mask(cpu, cpu_possible_map)
3928a8a2 43 tracing_reset(tr, cpu);
d13744cd
FW
44}
45
46static void boot_trace_ctrl_update(struct trace_array *tr)
47{
48 if (tr->ctrl)
49 start_boot_trace();
50 else
097d036a 51 stop_boot_trace();
d13744cd
FW
52}
53
9e9efffb 54static enum print_line_t initcall_print_line(struct trace_iterator *iter)
d13744cd 55{
9e9efffb 56 int ret;
d13744cd 57 struct trace_entry *entry = iter->ent;
777e208d
SR
58 struct trace_boot *field = (struct trace_boot *)entry;
59 struct boot_trace *it = &field->initcall;
d13744cd 60 struct trace_seq *s = &iter->seq;
cb5ab742
FW
61 struct timespec calltime = ktime_to_timespec(it->calltime);
62 struct timespec rettime = ktime_to_timespec(it->rettime);
d13744cd 63
9e9efffb 64 if (entry->type == TRACE_BOOT) {
8a5d900c 65 ret = trace_seq_printf(s, "[%5ld.%09ld] calling %s @ %i\n",
cb5ab742
FW
66 calltime.tv_sec,
67 calltime.tv_nsec,
68 it->func, it->caller);
69 if (!ret)
9e9efffb 70 return TRACE_TYPE_PARTIAL_LINE;
5601020f 71
8a5d900c 72 ret = trace_seq_printf(s, "[%5ld.%09ld] initcall %s "
cb5ab742
FW
73 "returned %d after %lld msecs\n",
74 rettime.tv_sec,
75 rettime.tv_nsec,
76 it->func, it->result, it->duration);
5601020f 77
cb5ab742
FW
78 if (!ret)
79 return TRACE_TYPE_PARTIAL_LINE;
80 return TRACE_TYPE_HANDLED;
9e9efffb
FW
81 }
82 return TRACE_TYPE_UNHANDLED;
d13744cd
FW
83}
84
85struct tracer boot_tracer __read_mostly =
86{
87 .name = "initcall",
88 .init = boot_trace_init,
097d036a 89 .reset = reset_boot_trace,
d13744cd
FW
90 .ctrl_update = boot_trace_ctrl_update,
91 .print_line = initcall_print_line,
92};
93
5601020f 94void trace_boot(struct boot_trace *it, initcall_t fn)
d13744cd 95{
3928a8a2 96 struct ring_buffer_event *event;
777e208d 97 struct trace_boot *entry;
d13744cd
FW
98 struct trace_array_cpu *data;
99 unsigned long irq_flags;
100 struct trace_array *tr = boot_trace;
101
102 if (!trace_boot_enabled)
103 return;
104
5601020f
FW
105 /* Get its name now since this function could
106 * disappear because it is in the .init section.
107 */
108 sprint_symbol(it->func, (unsigned long)fn);
d13744cd
FW
109 preempt_disable();
110 data = tr->data[smp_processor_id()];
111
3928a8a2
SR
112 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
113 &irq_flags);
114 if (!event)
115 goto out;
116 entry = ring_buffer_event_data(event);
38697053 117 tracing_generic_entry_update(&entry->ent, 0, 0);
777e208d
SR
118 entry->ent.type = TRACE_BOOT;
119 entry->initcall = *it;
3928a8a2 120 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
d13744cd 121
d13744cd
FW
122 trace_wake_up();
123
3928a8a2 124 out:
d13744cd
FW
125 preempt_enable();
126}