tracing: Fix compile error in module tracepoints when MODULE_UNLOAD not set
[deliverable/linux.git] / kernel / trace / trace_functions_graph.c
CommitLineData
fb52607a
FW
1/*
2 *
3 * Function graph tracer.
9005f3eb 4 * Copyright (c) 2008-2009 Frederic Weisbecker <fweisbec@gmail.com>
fb52607a
FW
5 * Mostly borrowed from function tracer which
6 * is Copyright (c) Steven Rostedt <srostedt@redhat.com>
7 *
8 */
9#include <linux/debugfs.h>
10#include <linux/uaccess.h>
11#include <linux/ftrace.h>
12#include <linux/fs.h>
13
14#include "trace.h"
f0868d1e 15#include "trace_output.h"
fb52607a 16
be1eca39 17struct fgraph_cpu_data {
2fbcdb35
SR
18 pid_t last_pid;
19 int depth;
be1eca39 20 int ignore;
f1c7f517 21 unsigned long enter_funcs[FTRACE_RETFUNC_DEPTH];
be1eca39
JO
22};
23
24struct fgraph_data {
25 struct fgraph_cpu_data *cpu_data;
26
27 /* Place to preserve last processed entry. */
28 struct ftrace_graph_ent_entry ent;
29 struct ftrace_graph_ret_entry ret;
30 int failed;
31 int cpu;
2fbcdb35
SR
32};
33
287b6e68 34#define TRACE_GRAPH_INDENT 2
fb52607a 35
1a056155 36/* Flag options */
fb52607a 37#define TRACE_GRAPH_PRINT_OVERRUN 0x1
1a056155
FW
38#define TRACE_GRAPH_PRINT_CPU 0x2
39#define TRACE_GRAPH_PRINT_OVERHEAD 0x4
11e84acc 40#define TRACE_GRAPH_PRINT_PROC 0x8
9005f3eb
FW
41#define TRACE_GRAPH_PRINT_DURATION 0x10
42#define TRACE_GRAPH_PRINT_ABS_TIME 0X20
1a056155 43
fb52607a 44static struct tracer_opt trace_opts[] = {
9005f3eb 45 /* Display overruns? (for self-debug purpose) */
1a056155
FW
46 { TRACER_OPT(funcgraph-overrun, TRACE_GRAPH_PRINT_OVERRUN) },
47 /* Display CPU ? */
48 { TRACER_OPT(funcgraph-cpu, TRACE_GRAPH_PRINT_CPU) },
49 /* Display Overhead ? */
50 { TRACER_OPT(funcgraph-overhead, TRACE_GRAPH_PRINT_OVERHEAD) },
11e84acc
FW
51 /* Display proc name/pid */
52 { TRACER_OPT(funcgraph-proc, TRACE_GRAPH_PRINT_PROC) },
9005f3eb
FW
53 /* Display duration of execution */
54 { TRACER_OPT(funcgraph-duration, TRACE_GRAPH_PRINT_DURATION) },
55 /* Display absolute time of an entry */
56 { TRACER_OPT(funcgraph-abstime, TRACE_GRAPH_PRINT_ABS_TIME) },
fb52607a
FW
57 { } /* Empty entry */
58};
59
60static struct tracer_flags tracer_flags = {
11e84acc 61 /* Don't display overruns and proc by default */
9005f3eb
FW
62 .val = TRACE_GRAPH_PRINT_CPU | TRACE_GRAPH_PRINT_OVERHEAD |
63 TRACE_GRAPH_PRINT_DURATION,
fb52607a
FW
64 .opts = trace_opts
65};
66
1a0799a8 67static struct trace_array *graph_array;
9005f3eb 68
fb52607a 69
712406a6
SR
70/* Add a function return address to the trace stack on thread info.*/
71int
71e308a2
SR
72ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth,
73 unsigned long frame_pointer)
712406a6 74{
5d1a03dc 75 unsigned long long calltime;
712406a6
SR
76 int index;
77
78 if (!current->ret_stack)
79 return -EBUSY;
80
82310a32
SR
81 /*
82 * We must make sure the ret_stack is tested before we read
83 * anything else.
84 */
85 smp_rmb();
86
712406a6
SR
87 /* The return trace stack is full */
88 if (current->curr_ret_stack == FTRACE_RETFUNC_DEPTH - 1) {
89 atomic_inc(&current->trace_overrun);
90 return -EBUSY;
91 }
92
5d1a03dc
SR
93 calltime = trace_clock_local();
94
712406a6
SR
95 index = ++current->curr_ret_stack;
96 barrier();
97 current->ret_stack[index].ret = ret;
98 current->ret_stack[index].func = func;
5d1a03dc 99 current->ret_stack[index].calltime = calltime;
a2a16d6a 100 current->ret_stack[index].subtime = 0;
71e308a2 101 current->ret_stack[index].fp = frame_pointer;
712406a6
SR
102 *depth = index;
103
104 return 0;
105}
106
107/* Retrieve a function return address to the trace stack on thread info.*/
a2a16d6a 108static void
71e308a2
SR
109ftrace_pop_return_trace(struct ftrace_graph_ret *trace, unsigned long *ret,
110 unsigned long frame_pointer)
712406a6
SR
111{
112 int index;
113
114 index = current->curr_ret_stack;
115
116 if (unlikely(index < 0)) {
117 ftrace_graph_stop();
118 WARN_ON(1);
119 /* Might as well panic, otherwise we have no where to go */
120 *ret = (unsigned long)panic;
121 return;
122 }
123
71e308a2
SR
124#ifdef CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST
125 /*
126 * The arch may choose to record the frame pointer used
127 * and check it here to make sure that it is what we expect it
128 * to be. If gcc does not set the place holder of the return
129 * address in the frame pointer, and does a copy instead, then
130 * the function graph trace will fail. This test detects this
131 * case.
132 *
133 * Currently, x86_32 with optimize for size (-Os) makes the latest
134 * gcc do the above.
135 */
136 if (unlikely(current->ret_stack[index].fp != frame_pointer)) {
137 ftrace_graph_stop();
138 WARN(1, "Bad frame pointer: expected %lx, received %lx\n"
b375a11a 139 " from func %ps return to %lx\n",
71e308a2
SR
140 current->ret_stack[index].fp,
141 frame_pointer,
142 (void *)current->ret_stack[index].func,
143 current->ret_stack[index].ret);
144 *ret = (unsigned long)panic;
145 return;
146 }
147#endif
148
712406a6
SR
149 *ret = current->ret_stack[index].ret;
150 trace->func = current->ret_stack[index].func;
151 trace->calltime = current->ret_stack[index].calltime;
152 trace->overrun = atomic_read(&current->trace_overrun);
153 trace->depth = index;
712406a6
SR
154}
155
156/*
157 * Send the trace to the ring-buffer.
158 * @return the original return address.
159 */
71e308a2 160unsigned long ftrace_return_to_handler(unsigned long frame_pointer)
712406a6
SR
161{
162 struct ftrace_graph_ret trace;
163 unsigned long ret;
164
71e308a2 165 ftrace_pop_return_trace(&trace, &ret, frame_pointer);
0012693a 166 trace.rettime = trace_clock_local();
712406a6 167 ftrace_graph_return(&trace);
a2a16d6a
SR
168 barrier();
169 current->curr_ret_stack--;
712406a6
SR
170
171 if (unlikely(!ret)) {
172 ftrace_graph_stop();
173 WARN_ON(1);
174 /* Might as well panic. What else to do? */
175 ret = (unsigned long)panic;
176 }
177
178 return ret;
179}
180
1a0799a8
FW
181static int __trace_graph_entry(struct trace_array *tr,
182 struct ftrace_graph_ent *trace,
183 unsigned long flags,
184 int pc)
185{
186 struct ftrace_event_call *call = &event_funcgraph_entry;
187 struct ring_buffer_event *event;
e77405ad 188 struct ring_buffer *buffer = tr->buffer;
1a0799a8
FW
189 struct ftrace_graph_ent_entry *entry;
190
dd17c8f7 191 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
1a0799a8
FW
192 return 0;
193
e77405ad 194 event = trace_buffer_lock_reserve(buffer, TRACE_GRAPH_ENT,
1a0799a8
FW
195 sizeof(*entry), flags, pc);
196 if (!event)
197 return 0;
198 entry = ring_buffer_event_data(event);
199 entry->graph_ent = *trace;
e77405ad
SR
200 if (!filter_current_check_discard(buffer, call, entry, event))
201 ring_buffer_unlock_commit(buffer, event);
1a0799a8
FW
202
203 return 1;
204}
205
206int trace_graph_entry(struct ftrace_graph_ent *trace)
207{
208 struct trace_array *tr = graph_array;
209 struct trace_array_cpu *data;
210 unsigned long flags;
211 long disabled;
212 int ret;
213 int cpu;
214 int pc;
215
1a0799a8
FW
216 if (!ftrace_trace_task(current))
217 return 0;
218
ea2c68a0
LJ
219 /* trace it when it is-nested-in or is a function enabled. */
220 if (!(trace->depth || ftrace_graph_addr(trace->func)))
1a0799a8
FW
221 return 0;
222
223 local_irq_save(flags);
224 cpu = raw_smp_processor_id();
225 data = tr->data[cpu];
226 disabled = atomic_inc_return(&data->disabled);
227 if (likely(disabled == 1)) {
228 pc = preempt_count();
229 ret = __trace_graph_entry(tr, trace, flags, pc);
230 } else {
231 ret = 0;
232 }
1a0799a8
FW
233
234 atomic_dec(&data->disabled);
235 local_irq_restore(flags);
236
237 return ret;
238}
239
0e950173
TB
240int trace_graph_thresh_entry(struct ftrace_graph_ent *trace)
241{
242 if (tracing_thresh)
243 return 1;
244 else
245 return trace_graph_entry(trace);
246}
247
1a0799a8
FW
248static void __trace_graph_return(struct trace_array *tr,
249 struct ftrace_graph_ret *trace,
250 unsigned long flags,
251 int pc)
252{
253 struct ftrace_event_call *call = &event_funcgraph_exit;
254 struct ring_buffer_event *event;
e77405ad 255 struct ring_buffer *buffer = tr->buffer;
1a0799a8
FW
256 struct ftrace_graph_ret_entry *entry;
257
dd17c8f7 258 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
1a0799a8
FW
259 return;
260
e77405ad 261 event = trace_buffer_lock_reserve(buffer, TRACE_GRAPH_RET,
1a0799a8
FW
262 sizeof(*entry), flags, pc);
263 if (!event)
264 return;
265 entry = ring_buffer_event_data(event);
266 entry->ret = *trace;
e77405ad
SR
267 if (!filter_current_check_discard(buffer, call, entry, event))
268 ring_buffer_unlock_commit(buffer, event);
1a0799a8
FW
269}
270
271void trace_graph_return(struct ftrace_graph_ret *trace)
272{
273 struct trace_array *tr = graph_array;
274 struct trace_array_cpu *data;
275 unsigned long flags;
276 long disabled;
277 int cpu;
278 int pc;
279
280 local_irq_save(flags);
281 cpu = raw_smp_processor_id();
282 data = tr->data[cpu];
283 disabled = atomic_inc_return(&data->disabled);
284 if (likely(disabled == 1)) {
285 pc = preempt_count();
286 __trace_graph_return(tr, trace, flags, pc);
287 }
1a0799a8
FW
288 atomic_dec(&data->disabled);
289 local_irq_restore(flags);
290}
291
24a53652
FW
292void set_graph_array(struct trace_array *tr)
293{
294 graph_array = tr;
295
296 /* Make graph_array visible before we start tracing */
297
298 smp_mb();
299}
300
0e950173
TB
301void trace_graph_thresh_return(struct ftrace_graph_ret *trace)
302{
303 if (tracing_thresh &&
304 (trace->rettime - trace->calltime < tracing_thresh))
305 return;
306 else
307 trace_graph_return(trace);
308}
309
fb52607a
FW
310static int graph_trace_init(struct trace_array *tr)
311{
1a0799a8
FW
312 int ret;
313
24a53652 314 set_graph_array(tr);
0e950173
TB
315 if (tracing_thresh)
316 ret = register_ftrace_graph(&trace_graph_thresh_return,
317 &trace_graph_thresh_entry);
318 else
319 ret = register_ftrace_graph(&trace_graph_return,
320 &trace_graph_entry);
660c7f9b
SR
321 if (ret)
322 return ret;
323 tracing_start_cmdline_record();
324
325 return 0;
fb52607a
FW
326}
327
328static void graph_trace_reset(struct trace_array *tr)
329{
660c7f9b
SR
330 tracing_stop_cmdline_record();
331 unregister_ftrace_graph();
fb52607a
FW
332}
333
0c9e6f63 334static int max_bytes_for_cpu;
1a056155
FW
335
336static enum print_line_t
337print_graph_cpu(struct trace_seq *s, int cpu)
338{
1a056155 339 int ret;
1a056155 340
d51090b3
IM
341 /*
342 * Start with a space character - to make it stand out
343 * to the right a bit when trace output is pasted into
344 * email:
345 */
0c9e6f63 346 ret = trace_seq_printf(s, " %*d) ", max_bytes_for_cpu, cpu);
1a056155 347 if (!ret)
d51090b3
IM
348 return TRACE_TYPE_PARTIAL_LINE;
349
1a056155
FW
350 return TRACE_TYPE_HANDLED;
351}
352
11e84acc
FW
353#define TRACE_GRAPH_PROCINFO_LENGTH 14
354
355static enum print_line_t
356print_graph_proc(struct trace_seq *s, pid_t pid)
357{
4ca53085 358 char comm[TASK_COMM_LEN];
11e84acc
FW
359 /* sign + log10(MAX_INT) + '\0' */
360 char pid_str[11];
4ca53085
SR
361 int spaces = 0;
362 int ret;
363 int len;
364 int i;
11e84acc 365
4ca53085 366 trace_find_cmdline(pid, comm);
11e84acc
FW
367 comm[7] = '\0';
368 sprintf(pid_str, "%d", pid);
369
370 /* 1 stands for the "-" character */
371 len = strlen(comm) + strlen(pid_str) + 1;
372
373 if (len < TRACE_GRAPH_PROCINFO_LENGTH)
374 spaces = TRACE_GRAPH_PROCINFO_LENGTH - len;
375
376 /* First spaces to align center */
377 for (i = 0; i < spaces / 2; i++) {
378 ret = trace_seq_printf(s, " ");
379 if (!ret)
380 return TRACE_TYPE_PARTIAL_LINE;
381 }
382
383 ret = trace_seq_printf(s, "%s-%s", comm, pid_str);
384 if (!ret)
385 return TRACE_TYPE_PARTIAL_LINE;
386
387 /* Last spaces to align center */
388 for (i = 0; i < spaces - (spaces / 2); i++) {
389 ret = trace_seq_printf(s, " ");
390 if (!ret)
391 return TRACE_TYPE_PARTIAL_LINE;
392 }
393 return TRACE_TYPE_HANDLED;
394}
395
1a056155 396
49ff5903
SR
397static enum print_line_t
398print_graph_lat_fmt(struct trace_seq *s, struct trace_entry *entry)
399{
f81c972d 400 if (!trace_seq_putc(s, ' '))
637e7e86
SR
401 return 0;
402
f81c972d 403 return trace_print_lat_fmt(s, entry);
49ff5903
SR
404}
405
287b6e68 406/* If the pid changed since the last trace, output this event */
11e84acc 407static enum print_line_t
2fbcdb35 408verif_pid(struct trace_seq *s, pid_t pid, int cpu, struct fgraph_data *data)
287b6e68 409{
d51090b3 410 pid_t prev_pid;
9005f3eb 411 pid_t *last_pid;
d51090b3 412 int ret;
660c7f9b 413
2fbcdb35 414 if (!data)
9005f3eb
FW
415 return TRACE_TYPE_HANDLED;
416
be1eca39 417 last_pid = &(per_cpu_ptr(data->cpu_data, cpu)->last_pid);
9005f3eb
FW
418
419 if (*last_pid == pid)
11e84acc 420 return TRACE_TYPE_HANDLED;
fb52607a 421
9005f3eb
FW
422 prev_pid = *last_pid;
423 *last_pid = pid;
d51090b3 424
9005f3eb
FW
425 if (prev_pid == -1)
426 return TRACE_TYPE_HANDLED;
d51090b3
IM
427/*
428 * Context-switch trace line:
429
430 ------------------------------------------
431 | 1) migration/0--1 => sshd-1755
432 ------------------------------------------
433
434 */
435 ret = trace_seq_printf(s,
1fd8f2a3 436 " ------------------------------------------\n");
11e84acc 437 if (!ret)
810dc732 438 return TRACE_TYPE_PARTIAL_LINE;
11e84acc
FW
439
440 ret = print_graph_cpu(s, cpu);
441 if (ret == TRACE_TYPE_PARTIAL_LINE)
810dc732 442 return TRACE_TYPE_PARTIAL_LINE;
11e84acc
FW
443
444 ret = print_graph_proc(s, prev_pid);
445 if (ret == TRACE_TYPE_PARTIAL_LINE)
810dc732 446 return TRACE_TYPE_PARTIAL_LINE;
11e84acc
FW
447
448 ret = trace_seq_printf(s, " => ");
449 if (!ret)
810dc732 450 return TRACE_TYPE_PARTIAL_LINE;
11e84acc
FW
451
452 ret = print_graph_proc(s, pid);
453 if (ret == TRACE_TYPE_PARTIAL_LINE)
810dc732 454 return TRACE_TYPE_PARTIAL_LINE;
11e84acc
FW
455
456 ret = trace_seq_printf(s,
457 "\n ------------------------------------------\n\n");
458 if (!ret)
810dc732 459 return TRACE_TYPE_PARTIAL_LINE;
11e84acc 460
810dc732 461 return TRACE_TYPE_HANDLED;
287b6e68
FW
462}
463
b91facc3
FW
464static struct ftrace_graph_ret_entry *
465get_return_for_leaf(struct trace_iterator *iter,
83a8df61
FW
466 struct ftrace_graph_ent_entry *curr)
467{
be1eca39
JO
468 struct fgraph_data *data = iter->private;
469 struct ring_buffer_iter *ring_iter = NULL;
83a8df61
FW
470 struct ring_buffer_event *event;
471 struct ftrace_graph_ret_entry *next;
472
be1eca39
JO
473 /*
474 * If the previous output failed to write to the seq buffer,
475 * then we just reuse the data from before.
476 */
477 if (data && data->failed) {
478 curr = &data->ent;
479 next = &data->ret;
480 } else {
83a8df61 481
be1eca39
JO
482 ring_iter = iter->buffer_iter[iter->cpu];
483
484 /* First peek to compare current entry and the next one */
485 if (ring_iter)
486 event = ring_buffer_iter_peek(ring_iter, NULL);
487 else {
488 /*
489 * We need to consume the current entry to see
490 * the next one.
491 */
492 ring_buffer_consume(iter->tr->buffer, iter->cpu, NULL);
493 event = ring_buffer_peek(iter->tr->buffer, iter->cpu,
494 NULL);
495 }
83a8df61 496
be1eca39
JO
497 if (!event)
498 return NULL;
499
500 next = ring_buffer_event_data(event);
83a8df61 501
be1eca39
JO
502 if (data) {
503 /*
504 * Save current and next entries for later reference
505 * if the output fails.
506 */
507 data->ent = *curr;
508 data->ret = *next;
509 }
510 }
83a8df61
FW
511
512 if (next->ent.type != TRACE_GRAPH_RET)
b91facc3 513 return NULL;
83a8df61
FW
514
515 if (curr->ent.pid != next->ent.pid ||
516 curr->graph_ent.func != next->ret.func)
b91facc3 517 return NULL;
83a8df61 518
b91facc3
FW
519 /* this is a leaf, now advance the iterator */
520 if (ring_iter)
521 ring_buffer_read(ring_iter, NULL);
522
523 return next;
83a8df61
FW
524}
525
9005f3eb
FW
526/* Signal a overhead of time execution to the output */
527static int
528print_graph_overhead(unsigned long long duration, struct trace_seq *s)
529{
530 /* If duration disappear, we don't need anything */
531 if (!(tracer_flags.val & TRACE_GRAPH_PRINT_DURATION))
532 return 1;
533
534 /* Non nested entry or return */
535 if (duration == -1)
536 return trace_seq_printf(s, " ");
537
538 if (tracer_flags.val & TRACE_GRAPH_PRINT_OVERHEAD) {
539 /* Duration exceeded 100 msecs */
540 if (duration > 100000ULL)
541 return trace_seq_printf(s, "! ");
542
543 /* Duration exceeded 10 msecs */
544 if (duration > 10000ULL)
545 return trace_seq_printf(s, "+ ");
546 }
547
548 return trace_seq_printf(s, " ");
549}
550
d1f9cbd7
FW
551static int print_graph_abs_time(u64 t, struct trace_seq *s)
552{
553 unsigned long usecs_rem;
554
555 usecs_rem = do_div(t, NSEC_PER_SEC);
556 usecs_rem /= 1000;
557
558 return trace_seq_printf(s, "%5lu.%06lu | ",
559 (unsigned long)t, usecs_rem);
560}
561
f8b755ac 562static enum print_line_t
d1f9cbd7 563print_graph_irq(struct trace_iterator *iter, unsigned long addr,
9005f3eb 564 enum trace_type type, int cpu, pid_t pid)
f8b755ac
FW
565{
566 int ret;
d1f9cbd7 567 struct trace_seq *s = &iter->seq;
f8b755ac
FW
568
569 if (addr < (unsigned long)__irqentry_text_start ||
570 addr >= (unsigned long)__irqentry_text_end)
571 return TRACE_TYPE_UNHANDLED;
572
d1f9cbd7
FW
573 /* Absolute time */
574 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME) {
575 ret = print_graph_abs_time(iter->ts, s);
576 if (!ret)
577 return TRACE_TYPE_PARTIAL_LINE;
578 }
579
9005f3eb
FW
580 /* Cpu */
581 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU) {
582 ret = print_graph_cpu(s, cpu);
583 if (ret == TRACE_TYPE_PARTIAL_LINE)
584 return TRACE_TYPE_PARTIAL_LINE;
585 }
49ff5903 586
9005f3eb
FW
587 /* Proc */
588 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC) {
589 ret = print_graph_proc(s, pid);
590 if (ret == TRACE_TYPE_PARTIAL_LINE)
591 return TRACE_TYPE_PARTIAL_LINE;
592 ret = trace_seq_printf(s, " | ");
593 if (!ret)
594 return TRACE_TYPE_PARTIAL_LINE;
595 }
f8b755ac 596
9005f3eb
FW
597 /* No overhead */
598 ret = print_graph_overhead(-1, s);
599 if (!ret)
600 return TRACE_TYPE_PARTIAL_LINE;
f8b755ac 601
9005f3eb
FW
602 if (type == TRACE_GRAPH_ENT)
603 ret = trace_seq_printf(s, "==========>");
604 else
605 ret = trace_seq_printf(s, "<==========");
606
607 if (!ret)
608 return TRACE_TYPE_PARTIAL_LINE;
609
610 /* Don't close the duration column if haven't one */
611 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION)
612 trace_seq_printf(s, " |");
613 ret = trace_seq_printf(s, "\n");
f8b755ac 614
f8b755ac
FW
615 if (!ret)
616 return TRACE_TYPE_PARTIAL_LINE;
617 return TRACE_TYPE_HANDLED;
618}
83a8df61 619
0706f1c4
SR
620enum print_line_t
621trace_print_graph_duration(unsigned long long duration, struct trace_seq *s)
83a8df61
FW
622{
623 unsigned long nsecs_rem = do_div(duration, 1000);
166d3c79
FW
624 /* log10(ULONG_MAX) + '\0' */
625 char msecs_str[21];
626 char nsecs_str[5];
627 int ret, len;
628 int i;
629
630 sprintf(msecs_str, "%lu", (unsigned long) duration);
631
632 /* Print msecs */
9005f3eb 633 ret = trace_seq_printf(s, "%s", msecs_str);
166d3c79
FW
634 if (!ret)
635 return TRACE_TYPE_PARTIAL_LINE;
636
637 len = strlen(msecs_str);
638
639 /* Print nsecs (we don't want to exceed 7 numbers) */
640 if (len < 7) {
641 snprintf(nsecs_str, 8 - len, "%03lu", nsecs_rem);
642 ret = trace_seq_printf(s, ".%s", nsecs_str);
643 if (!ret)
644 return TRACE_TYPE_PARTIAL_LINE;
645 len += strlen(nsecs_str);
646 }
647
648 ret = trace_seq_printf(s, " us ");
649 if (!ret)
650 return TRACE_TYPE_PARTIAL_LINE;
651
652 /* Print remaining spaces to fit the row's width */
653 for (i = len; i < 7; i++) {
654 ret = trace_seq_printf(s, " ");
655 if (!ret)
656 return TRACE_TYPE_PARTIAL_LINE;
657 }
0706f1c4
SR
658 return TRACE_TYPE_HANDLED;
659}
660
661static enum print_line_t
662print_graph_duration(unsigned long long duration, struct trace_seq *s)
663{
664 int ret;
665
666 ret = trace_print_graph_duration(duration, s);
667 if (ret != TRACE_TYPE_HANDLED)
668 return ret;
166d3c79
FW
669
670 ret = trace_seq_printf(s, "| ");
671 if (!ret)
672 return TRACE_TYPE_PARTIAL_LINE;
166d3c79 673
0706f1c4 674 return TRACE_TYPE_HANDLED;
83a8df61
FW
675}
676
83a8df61 677/* Case of a leaf function on its call entry */
287b6e68 678static enum print_line_t
83a8df61 679print_graph_entry_leaf(struct trace_iterator *iter,
b91facc3
FW
680 struct ftrace_graph_ent_entry *entry,
681 struct ftrace_graph_ret_entry *ret_entry, struct trace_seq *s)
fb52607a 682{
2fbcdb35 683 struct fgraph_data *data = iter->private;
83a8df61 684 struct ftrace_graph_ret *graph_ret;
83a8df61
FW
685 struct ftrace_graph_ent *call;
686 unsigned long long duration;
fb52607a 687 int ret;
1a056155 688 int i;
fb52607a 689
83a8df61
FW
690 graph_ret = &ret_entry->ret;
691 call = &entry->graph_ent;
692 duration = graph_ret->rettime - graph_ret->calltime;
693
2fbcdb35 694 if (data) {
f1c7f517 695 struct fgraph_cpu_data *cpu_data;
2fbcdb35 696 int cpu = iter->cpu;
f1c7f517
SR
697
698 cpu_data = per_cpu_ptr(data->cpu_data, cpu);
2fbcdb35
SR
699
700 /*
701 * Comments display at + 1 to depth. Since
702 * this is a leaf function, keep the comments
703 * equal to this depth.
704 */
f1c7f517
SR
705 cpu_data->depth = call->depth - 1;
706
707 /* No need to keep this function around for this depth */
708 if (call->depth < FTRACE_RETFUNC_DEPTH)
709 cpu_data->enter_funcs[call->depth] = 0;
2fbcdb35
SR
710 }
711
83a8df61 712 /* Overhead */
9005f3eb
FW
713 ret = print_graph_overhead(duration, s);
714 if (!ret)
715 return TRACE_TYPE_PARTIAL_LINE;
1a056155
FW
716
717 /* Duration */
9005f3eb
FW
718 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
719 ret = print_graph_duration(duration, s);
720 if (ret == TRACE_TYPE_PARTIAL_LINE)
721 return TRACE_TYPE_PARTIAL_LINE;
722 }
437f24fb 723
83a8df61
FW
724 /* Function */
725 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) {
726 ret = trace_seq_printf(s, " ");
727 if (!ret)
728 return TRACE_TYPE_PARTIAL_LINE;
729 }
730
b375a11a 731 ret = trace_seq_printf(s, "%ps();\n", (void *)call->func);
83a8df61
FW
732 if (!ret)
733 return TRACE_TYPE_PARTIAL_LINE;
734
735 return TRACE_TYPE_HANDLED;
736}
737
738static enum print_line_t
2fbcdb35
SR
739print_graph_entry_nested(struct trace_iterator *iter,
740 struct ftrace_graph_ent_entry *entry,
741 struct trace_seq *s, int cpu)
83a8df61 742{
83a8df61 743 struct ftrace_graph_ent *call = &entry->graph_ent;
2fbcdb35
SR
744 struct fgraph_data *data = iter->private;
745 int ret;
746 int i;
747
748 if (data) {
f1c7f517 749 struct fgraph_cpu_data *cpu_data;
2fbcdb35 750 int cpu = iter->cpu;
2fbcdb35 751
f1c7f517
SR
752 cpu_data = per_cpu_ptr(data->cpu_data, cpu);
753 cpu_data->depth = call->depth;
754
755 /* Save this function pointer to see if the exit matches */
756 if (call->depth < FTRACE_RETFUNC_DEPTH)
757 cpu_data->enter_funcs[call->depth] = call->func;
2fbcdb35 758 }
83a8df61
FW
759
760 /* No overhead */
9005f3eb
FW
761 ret = print_graph_overhead(-1, s);
762 if (!ret)
763 return TRACE_TYPE_PARTIAL_LINE;
1a056155 764
9005f3eb
FW
765 /* No time */
766 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
f8b755ac
FW
767 ret = trace_seq_printf(s, " | ");
768 if (!ret)
769 return TRACE_TYPE_PARTIAL_LINE;
f8b755ac
FW
770 }
771
83a8df61 772 /* Function */
287b6e68
FW
773 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) {
774 ret = trace_seq_printf(s, " ");
fb52607a
FW
775 if (!ret)
776 return TRACE_TYPE_PARTIAL_LINE;
287b6e68
FW
777 }
778
b375a11a 779 ret = trace_seq_printf(s, "%ps() {\n", (void *)call->func);
83a8df61
FW
780 if (!ret)
781 return TRACE_TYPE_PARTIAL_LINE;
782
b91facc3
FW
783 /*
784 * we already consumed the current entry to check the next one
785 * and see if this is a leaf.
786 */
787 return TRACE_TYPE_NO_CONSUME;
287b6e68
FW
788}
789
83a8df61 790static enum print_line_t
ac5f6c96
SR
791print_graph_prologue(struct trace_iterator *iter, struct trace_seq *s,
792 int type, unsigned long addr)
83a8df61 793{
2fbcdb35 794 struct fgraph_data *data = iter->private;
83a8df61 795 struct trace_entry *ent = iter->ent;
ac5f6c96
SR
796 int cpu = iter->cpu;
797 int ret;
83a8df61 798
1a056155 799 /* Pid */
2fbcdb35 800 if (verif_pid(s, ent->pid, cpu, data) == TRACE_TYPE_PARTIAL_LINE)
9005f3eb
FW
801 return TRACE_TYPE_PARTIAL_LINE;
802
ac5f6c96
SR
803 if (type) {
804 /* Interrupt */
805 ret = print_graph_irq(iter, addr, type, cpu, ent->pid);
806 if (ret == TRACE_TYPE_PARTIAL_LINE)
807 return TRACE_TYPE_PARTIAL_LINE;
808 }
83a8df61 809
9005f3eb
FW
810 /* Absolute time */
811 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME) {
812 ret = print_graph_abs_time(iter->ts, s);
813 if (!ret)
814 return TRACE_TYPE_PARTIAL_LINE;
815 }
816
1a056155
FW
817 /* Cpu */
818 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU) {
819 ret = print_graph_cpu(s, cpu);
11e84acc
FW
820 if (ret == TRACE_TYPE_PARTIAL_LINE)
821 return TRACE_TYPE_PARTIAL_LINE;
822 }
823
824 /* Proc */
825 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC) {
00a8bf85 826 ret = print_graph_proc(s, ent->pid);
11e84acc
FW
827 if (ret == TRACE_TYPE_PARTIAL_LINE)
828 return TRACE_TYPE_PARTIAL_LINE;
829
830 ret = trace_seq_printf(s, " | ");
1a056155
FW
831 if (!ret)
832 return TRACE_TYPE_PARTIAL_LINE;
833 }
83a8df61 834
49ff5903
SR
835 /* Latency format */
836 if (trace_flags & TRACE_ITER_LATENCY_FMT) {
837 ret = print_graph_lat_fmt(s, ent);
838 if (ret == TRACE_TYPE_PARTIAL_LINE)
839 return TRACE_TYPE_PARTIAL_LINE;
840 }
841
ac5f6c96
SR
842 return 0;
843}
844
845static enum print_line_t
846print_graph_entry(struct ftrace_graph_ent_entry *field, struct trace_seq *s,
847 struct trace_iterator *iter)
848{
be1eca39 849 struct fgraph_data *data = iter->private;
ac5f6c96
SR
850 struct ftrace_graph_ent *call = &field->graph_ent;
851 struct ftrace_graph_ret_entry *leaf_ret;
be1eca39
JO
852 static enum print_line_t ret;
853 int cpu = iter->cpu;
ac5f6c96
SR
854
855 if (print_graph_prologue(iter, s, TRACE_GRAPH_ENT, call->func))
856 return TRACE_TYPE_PARTIAL_LINE;
857
b91facc3
FW
858 leaf_ret = get_return_for_leaf(iter, field);
859 if (leaf_ret)
be1eca39 860 ret = print_graph_entry_leaf(iter, field, leaf_ret, s);
83a8df61 861 else
be1eca39 862 ret = print_graph_entry_nested(iter, field, s, cpu);
83a8df61 863
be1eca39
JO
864 if (data) {
865 /*
866 * If we failed to write our output, then we need to make
867 * note of it. Because we already consumed our entry.
868 */
869 if (s->full) {
870 data->failed = 1;
871 data->cpu = cpu;
872 } else
873 data->failed = 0;
874 }
875
876 return ret;
83a8df61
FW
877}
878
287b6e68
FW
879static enum print_line_t
880print_graph_return(struct ftrace_graph_ret *trace, struct trace_seq *s,
9005f3eb 881 struct trace_entry *ent, struct trace_iterator *iter)
287b6e68 882{
83a8df61 883 unsigned long long duration = trace->rettime - trace->calltime;
2fbcdb35
SR
884 struct fgraph_data *data = iter->private;
885 pid_t pid = ent->pid;
886 int cpu = iter->cpu;
f1c7f517 887 int func_match = 1;
2fbcdb35
SR
888 int ret;
889 int i;
890
891 if (data) {
f1c7f517
SR
892 struct fgraph_cpu_data *cpu_data;
893 int cpu = iter->cpu;
894
895 cpu_data = per_cpu_ptr(data->cpu_data, cpu);
2fbcdb35
SR
896
897 /*
898 * Comments display at + 1 to depth. This is the
899 * return from a function, we now want the comments
900 * to display at the same level of the bracket.
901 */
f1c7f517
SR
902 cpu_data->depth = trace->depth - 1;
903
904 if (trace->depth < FTRACE_RETFUNC_DEPTH) {
905 if (cpu_data->enter_funcs[trace->depth] != trace->func)
906 func_match = 0;
907 cpu_data->enter_funcs[trace->depth] = 0;
908 }
2fbcdb35 909 }
287b6e68 910
ac5f6c96 911 if (print_graph_prologue(iter, s, 0, 0))
437f24fb
SR
912 return TRACE_TYPE_PARTIAL_LINE;
913
83a8df61 914 /* Overhead */
9005f3eb
FW
915 ret = print_graph_overhead(duration, s);
916 if (!ret)
917 return TRACE_TYPE_PARTIAL_LINE;
1a056155
FW
918
919 /* Duration */
9005f3eb
FW
920 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
921 ret = print_graph_duration(duration, s);
922 if (ret == TRACE_TYPE_PARTIAL_LINE)
923 return TRACE_TYPE_PARTIAL_LINE;
924 }
83a8df61
FW
925
926 /* Closing brace */
287b6e68
FW
927 for (i = 0; i < trace->depth * TRACE_GRAPH_INDENT; i++) {
928 ret = trace_seq_printf(s, " ");
fb52607a
FW
929 if (!ret)
930 return TRACE_TYPE_PARTIAL_LINE;
287b6e68
FW
931 }
932
f1c7f517
SR
933 /*
934 * If the return function does not have a matching entry,
935 * then the entry was lost. Instead of just printing
936 * the '}' and letting the user guess what function this
937 * belongs to, write out the function name.
938 */
939 if (func_match) {
940 ret = trace_seq_printf(s, "}\n");
941 if (!ret)
942 return TRACE_TYPE_PARTIAL_LINE;
943 } else {
a094fe04 944 ret = trace_seq_printf(s, "} /* %ps */\n", (void *)trace->func);
f1c7f517
SR
945 if (!ret)
946 return TRACE_TYPE_PARTIAL_LINE;
947 }
fb52607a 948
83a8df61 949 /* Overrun */
287b6e68
FW
950 if (tracer_flags.val & TRACE_GRAPH_PRINT_OVERRUN) {
951 ret = trace_seq_printf(s, " (Overruns: %lu)\n",
952 trace->overrun);
fb52607a
FW
953 if (!ret)
954 return TRACE_TYPE_PARTIAL_LINE;
287b6e68 955 }
f8b755ac 956
d1f9cbd7 957 ret = print_graph_irq(iter, trace->func, TRACE_GRAPH_RET, cpu, pid);
f8b755ac
FW
958 if (ret == TRACE_TYPE_PARTIAL_LINE)
959 return TRACE_TYPE_PARTIAL_LINE;
960
287b6e68
FW
961 return TRACE_TYPE_HANDLED;
962}
963
1fd8f2a3 964static enum print_line_t
5087f8d2
SR
965print_graph_comment(struct trace_seq *s, struct trace_entry *ent,
966 struct trace_iterator *iter)
1fd8f2a3 967{
5087f8d2 968 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2fbcdb35 969 struct fgraph_data *data = iter->private;
5087f8d2 970 struct trace_event *event;
2fbcdb35 971 int depth = 0;
1fd8f2a3 972 int ret;
2fbcdb35
SR
973 int i;
974
975 if (data)
be1eca39 976 depth = per_cpu_ptr(data->cpu_data, iter->cpu)->depth;
9005f3eb 977
ac5f6c96 978 if (print_graph_prologue(iter, s, 0, 0))
d1f9cbd7
FW
979 return TRACE_TYPE_PARTIAL_LINE;
980
1fd8f2a3 981 /* No overhead */
9005f3eb
FW
982 ret = print_graph_overhead(-1, s);
983 if (!ret)
984 return TRACE_TYPE_PARTIAL_LINE;
985
986 /* No time */
987 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
988 ret = trace_seq_printf(s, " | ");
1fd8f2a3
FW
989 if (!ret)
990 return TRACE_TYPE_PARTIAL_LINE;
991 }
992
1fd8f2a3 993 /* Indentation */
2fbcdb35
SR
994 if (depth > 0)
995 for (i = 0; i < (depth + 1) * TRACE_GRAPH_INDENT; i++) {
1fd8f2a3
FW
996 ret = trace_seq_printf(s, " ");
997 if (!ret)
998 return TRACE_TYPE_PARTIAL_LINE;
999 }
1000
1001 /* The comment */
769b0441
FW
1002 ret = trace_seq_printf(s, "/* ");
1003 if (!ret)
1004 return TRACE_TYPE_PARTIAL_LINE;
1005
5087f8d2
SR
1006 switch (iter->ent->type) {
1007 case TRACE_BPRINT:
1008 ret = trace_print_bprintk_msg_only(iter);
1009 if (ret != TRACE_TYPE_HANDLED)
1010 return ret;
1011 break;
1012 case TRACE_PRINT:
1013 ret = trace_print_printk_msg_only(iter);
1014 if (ret != TRACE_TYPE_HANDLED)
1015 return ret;
1016 break;
1017 default:
1018 event = ftrace_find_event(ent->type);
1019 if (!event)
1020 return TRACE_TYPE_UNHANDLED;
1021
1022 ret = event->trace(iter, sym_flags);
1023 if (ret != TRACE_TYPE_HANDLED)
1024 return ret;
1025 }
1fd8f2a3 1026
412d0bb5
FW
1027 /* Strip ending newline */
1028 if (s->buffer[s->len - 1] == '\n') {
1029 s->buffer[s->len - 1] = '\0';
1030 s->len--;
1031 }
1032
1fd8f2a3
FW
1033 ret = trace_seq_printf(s, " */\n");
1034 if (!ret)
1035 return TRACE_TYPE_PARTIAL_LINE;
1036
1037 return TRACE_TYPE_HANDLED;
1038}
1039
1040
287b6e68
FW
1041enum print_line_t
1042print_graph_function(struct trace_iterator *iter)
1043{
be1eca39
JO
1044 struct ftrace_graph_ent_entry *field;
1045 struct fgraph_data *data = iter->private;
287b6e68 1046 struct trace_entry *entry = iter->ent;
5087f8d2 1047 struct trace_seq *s = &iter->seq;
be1eca39
JO
1048 int cpu = iter->cpu;
1049 int ret;
1050
1051 if (data && per_cpu_ptr(data->cpu_data, cpu)->ignore) {
1052 per_cpu_ptr(data->cpu_data, cpu)->ignore = 0;
1053 return TRACE_TYPE_HANDLED;
1054 }
1055
1056 /*
1057 * If the last output failed, there's a possibility we need
1058 * to print out the missing entry which would never go out.
1059 */
1060 if (data && data->failed) {
1061 field = &data->ent;
1062 iter->cpu = data->cpu;
1063 ret = print_graph_entry(field, s, iter);
1064 if (ret == TRACE_TYPE_HANDLED && iter->cpu != cpu) {
1065 per_cpu_ptr(data->cpu_data, iter->cpu)->ignore = 1;
1066 ret = TRACE_TYPE_NO_CONSUME;
1067 }
1068 iter->cpu = cpu;
1069 return ret;
1070 }
fb52607a 1071
287b6e68
FW
1072 switch (entry->type) {
1073 case TRACE_GRAPH_ENT: {
38ceb592
LJ
1074 /*
1075 * print_graph_entry() may consume the current event,
1076 * thus @field may become invalid, so we need to save it.
1077 * sizeof(struct ftrace_graph_ent_entry) is very small,
1078 * it can be safely saved at the stack.
1079 */
be1eca39 1080 struct ftrace_graph_ent_entry saved;
287b6e68 1081 trace_assign_type(field, entry);
38ceb592
LJ
1082 saved = *field;
1083 return print_graph_entry(&saved, s, iter);
287b6e68
FW
1084 }
1085 case TRACE_GRAPH_RET: {
1086 struct ftrace_graph_ret_entry *field;
1087 trace_assign_type(field, entry);
9005f3eb 1088 return print_graph_return(&field->ret, s, entry, iter);
287b6e68
FW
1089 }
1090 default:
5087f8d2 1091 return print_graph_comment(s, entry, iter);
fb52607a 1092 }
5087f8d2
SR
1093
1094 return TRACE_TYPE_HANDLED;
fb52607a
FW
1095}
1096
49ff5903
SR
1097static void print_lat_header(struct seq_file *s)
1098{
1099 static const char spaces[] = " " /* 16 spaces */
1100 " " /* 4 spaces */
1101 " "; /* 17 spaces */
1102 int size = 0;
1103
1104 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME)
1105 size += 16;
1106 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU)
1107 size += 4;
1108 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC)
1109 size += 17;
1110
1111 seq_printf(s, "#%.*s _-----=> irqs-off \n", size, spaces);
1112 seq_printf(s, "#%.*s / _----=> need-resched \n", size, spaces);
1113 seq_printf(s, "#%.*s| / _---=> hardirq/softirq \n", size, spaces);
1114 seq_printf(s, "#%.*s|| / _--=> preempt-depth \n", size, spaces);
637e7e86
SR
1115 seq_printf(s, "#%.*s||| / _-=> lock-depth \n", size, spaces);
1116 seq_printf(s, "#%.*s|||| / \n", size, spaces);
49ff5903
SR
1117}
1118
decbec38
FW
1119static void print_graph_headers(struct seq_file *s)
1120{
49ff5903
SR
1121 int lat = trace_flags & TRACE_ITER_LATENCY_FMT;
1122
1123 if (lat)
1124 print_lat_header(s);
1125
decbec38 1126 /* 1st line */
49ff5903 1127 seq_printf(s, "#");
9005f3eb
FW
1128 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME)
1129 seq_printf(s, " TIME ");
decbec38 1130 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU)
49ff5903 1131 seq_printf(s, " CPU");
decbec38 1132 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC)
49ff5903
SR
1133 seq_printf(s, " TASK/PID ");
1134 if (lat)
637e7e86 1135 seq_printf(s, "|||||");
9005f3eb
FW
1136 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION)
1137 seq_printf(s, " DURATION ");
1138 seq_printf(s, " FUNCTION CALLS\n");
decbec38
FW
1139
1140 /* 2nd line */
49ff5903 1141 seq_printf(s, "#");
9005f3eb
FW
1142 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME)
1143 seq_printf(s, " | ");
decbec38 1144 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU)
49ff5903 1145 seq_printf(s, " | ");
decbec38 1146 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC)
49ff5903
SR
1147 seq_printf(s, " | | ");
1148 if (lat)
637e7e86 1149 seq_printf(s, "|||||");
9005f3eb
FW
1150 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION)
1151 seq_printf(s, " | | ");
1152 seq_printf(s, " | | | |\n");
decbec38 1153}
9005f3eb
FW
1154
1155static void graph_trace_open(struct trace_iterator *iter)
1156{
2fbcdb35 1157 /* pid and depth on the last trace processed */
be1eca39 1158 struct fgraph_data *data;
9005f3eb
FW
1159 int cpu;
1160
be1eca39
JO
1161 iter->private = NULL;
1162
1163 data = kzalloc(sizeof(*data), GFP_KERNEL);
2fbcdb35 1164 if (!data)
be1eca39
JO
1165 goto out_err;
1166
1167 data->cpu_data = alloc_percpu(struct fgraph_cpu_data);
1168 if (!data->cpu_data)
1169 goto out_err_free;
1170
1171 for_each_possible_cpu(cpu) {
1172 pid_t *pid = &(per_cpu_ptr(data->cpu_data, cpu)->last_pid);
1173 int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth);
1174 int *ignore = &(per_cpu_ptr(data->cpu_data, cpu)->ignore);
1175 *pid = -1;
1176 *depth = 0;
1177 *ignore = 0;
1178 }
9005f3eb 1179
2fbcdb35 1180 iter->private = data;
be1eca39
JO
1181
1182 return;
1183
1184 out_err_free:
1185 kfree(data);
1186 out_err:
1187 pr_warning("function graph tracer: not enough memory\n");
9005f3eb
FW
1188}
1189
1190static void graph_trace_close(struct trace_iterator *iter)
1191{
be1eca39
JO
1192 struct fgraph_data *data = iter->private;
1193
1194 if (data) {
1195 free_percpu(data->cpu_data);
1196 kfree(data);
1197 }
9005f3eb
FW
1198}
1199
fb52607a 1200static struct tracer graph_trace __read_mostly = {
ef18012b 1201 .name = "function_graph",
9005f3eb 1202 .open = graph_trace_open,
be1eca39 1203 .pipe_open = graph_trace_open,
9005f3eb 1204 .close = graph_trace_close,
be1eca39 1205 .pipe_close = graph_trace_close,
6eaaa5d5 1206 .wait_pipe = poll_wait_pipe,
ef18012b
SR
1207 .init = graph_trace_init,
1208 .reset = graph_trace_reset,
decbec38
FW
1209 .print_line = print_graph_function,
1210 .print_header = print_graph_headers,
fb52607a 1211 .flags = &tracer_flags,
7447dce9
FW
1212#ifdef CONFIG_FTRACE_SELFTEST
1213 .selftest = trace_selftest_startup_function_graph,
1214#endif
fb52607a
FW
1215};
1216
1217static __init int init_graph_trace(void)
1218{
0c9e6f63
LJ
1219 max_bytes_for_cpu = snprintf(NULL, 0, "%d", nr_cpu_ids - 1);
1220
fb52607a
FW
1221 return register_tracer(&graph_trace);
1222}
1223
1224device_initcall(init_graph_trace);
This page took 0.275249 seconds and 5 git commands to generate.