]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/trace/trace_boot.c
tracing/fastboot: Enable boot tracing only during initcalls
[net-next-2.6.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;
71566a0d 16static bool pre_initcalls_finished;
d13744cd 17
71566a0d
FW
18/* Tells the boot tracer that the pre_smp_initcalls are finished.
19 * So we are ready .
20 * It doesn't enable sched events tracing however.
21 * You have to call enable_boot_trace to do so.
22 */
d13744cd
FW
23void start_boot_trace(void)
24{
71566a0d
FW
25 pre_initcalls_finished = true;
26}
27
28void enable_boot_trace(void)
29{
d13744cd
FW
30}
31
71566a0d 32void disable_boot_trace(void)
d13744cd 33{
d13744cd
FW
34}
35
097d036a
FW
36void reset_boot_trace(struct trace_array *tr)
37{
71566a0d 38 disable_boot_trace();
097d036a
FW
39}
40
d13744cd
FW
41static void boot_trace_init(struct trace_array *tr)
42{
43 int cpu;
44 boot_trace = tr;
45
d13744cd 46 for_each_cpu_mask(cpu, cpu_possible_map)
3928a8a2 47 tracing_reset(tr, cpu);
d13744cd
FW
48}
49
50static void boot_trace_ctrl_update(struct trace_array *tr)
51{
52 if (tr->ctrl)
71566a0d 53 enable_boot_trace();
d13744cd 54 else
71566a0d 55 disable_boot_trace();
d13744cd
FW
56}
57
9e9efffb 58static enum print_line_t initcall_print_line(struct trace_iterator *iter)
d13744cd 59{
9e9efffb 60 int ret;
d13744cd 61 struct trace_entry *entry = iter->ent;
777e208d
SR
62 struct trace_boot *field = (struct trace_boot *)entry;
63 struct boot_trace *it = &field->initcall;
d13744cd 64 struct trace_seq *s = &iter->seq;
cb5ab742
FW
65 struct timespec calltime = ktime_to_timespec(it->calltime);
66 struct timespec rettime = ktime_to_timespec(it->rettime);
d13744cd 67
9e9efffb 68 if (entry->type == TRACE_BOOT) {
8a5d900c 69 ret = trace_seq_printf(s, "[%5ld.%09ld] calling %s @ %i\n",
cb5ab742
FW
70 calltime.tv_sec,
71 calltime.tv_nsec,
72 it->func, it->caller);
73 if (!ret)
9e9efffb 74 return TRACE_TYPE_PARTIAL_LINE;
5601020f 75
8a5d900c 76 ret = trace_seq_printf(s, "[%5ld.%09ld] initcall %s "
cb5ab742
FW
77 "returned %d after %lld msecs\n",
78 rettime.tv_sec,
79 rettime.tv_nsec,
80 it->func, it->result, it->duration);
5601020f 81
cb5ab742
FW
82 if (!ret)
83 return TRACE_TYPE_PARTIAL_LINE;
84 return TRACE_TYPE_HANDLED;
9e9efffb
FW
85 }
86 return TRACE_TYPE_UNHANDLED;
d13744cd
FW
87}
88
89struct tracer boot_tracer __read_mostly =
90{
91 .name = "initcall",
92 .init = boot_trace_init,
097d036a 93 .reset = reset_boot_trace,
d13744cd
FW
94 .ctrl_update = boot_trace_ctrl_update,
95 .print_line = initcall_print_line,
96};
97
5601020f 98void trace_boot(struct boot_trace *it, initcall_t fn)
d13744cd 99{
3928a8a2 100 struct ring_buffer_event *event;
777e208d 101 struct trace_boot *entry;
d13744cd
FW
102 struct trace_array_cpu *data;
103 unsigned long irq_flags;
104 struct trace_array *tr = boot_trace;
105
71566a0d 106 if (!pre_initcalls_finished)
d13744cd
FW
107 return;
108
5601020f
FW
109 /* Get its name now since this function could
110 * disappear because it is in the .init section.
111 */
112 sprint_symbol(it->func, (unsigned long)fn);
d13744cd
FW
113 preempt_disable();
114 data = tr->data[smp_processor_id()];
115
3928a8a2
SR
116 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
117 &irq_flags);
118 if (!event)
119 goto out;
120 entry = ring_buffer_event_data(event);
38697053 121 tracing_generic_entry_update(&entry->ent, 0, 0);
777e208d
SR
122 entry->ent.type = TRACE_BOOT;
123 entry->initcall = *it;
3928a8a2 124 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
d13744cd 125
d13744cd
FW
126 trace_wake_up();
127
3928a8a2 128 out:
d13744cd
FW
129 preempt_enable();
130}