3 * Function graph tracer.
4 * Copyright (c) 2008-2009 Frederic Weisbecker <fweisbec@gmail.com>
5 * Mostly borrowed from function tracer which
6 * is Copyright (c) Steven Rostedt <srostedt@redhat.com>
9 #include <linux/debugfs.h>
10 #include <linux/uaccess.h>
11 #include <linux/ftrace.h>
15 #include "trace_output.h"
22 #define TRACE_GRAPH_INDENT 2
25 #define TRACE_GRAPH_PRINT_OVERRUN 0x1
26 #define TRACE_GRAPH_PRINT_CPU 0x2
27 #define TRACE_GRAPH_PRINT_OVERHEAD 0x4
28 #define TRACE_GRAPH_PRINT_PROC 0x8
29 #define TRACE_GRAPH_PRINT_DURATION 0x10
30 #define TRACE_GRAPH_PRINT_ABS_TIME 0X20
32 static struct tracer_opt trace_opts[] = {
33 /* Display overruns? (for self-debug purpose) */
34 { TRACER_OPT(funcgraph-overrun, TRACE_GRAPH_PRINT_OVERRUN) },
36 { TRACER_OPT(funcgraph-cpu, TRACE_GRAPH_PRINT_CPU) },
37 /* Display Overhead ? */
38 { TRACER_OPT(funcgraph-overhead, TRACE_GRAPH_PRINT_OVERHEAD) },
39 /* Display proc name/pid */
40 { TRACER_OPT(funcgraph-proc, TRACE_GRAPH_PRINT_PROC) },
41 /* Display duration of execution */
42 { TRACER_OPT(funcgraph-duration, TRACE_GRAPH_PRINT_DURATION) },
43 /* Display absolute time of an entry */
44 { TRACER_OPT(funcgraph-abstime, TRACE_GRAPH_PRINT_ABS_TIME) },
48 static struct tracer_flags tracer_flags = {
49 /* Don't display overruns and proc by default */
50 .val = TRACE_GRAPH_PRINT_CPU | TRACE_GRAPH_PRINT_OVERHEAD |
51 TRACE_GRAPH_PRINT_DURATION,
55 /* pid on the last trace processed */
58 /* Add a function return address to the trace stack on thread info.*/
60 ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth)
62 unsigned long long calltime;
65 if (!current->ret_stack)
69 * We must make sure the ret_stack is tested before we read
74 /* The return trace stack is full */
75 if (current->curr_ret_stack == FTRACE_RETFUNC_DEPTH - 1) {
76 atomic_inc(¤t->trace_overrun);
80 calltime = trace_clock_local();
82 index = ++current->curr_ret_stack;
84 current->ret_stack[index].ret = ret;
85 current->ret_stack[index].func = func;
86 current->ret_stack[index].calltime = calltime;
87 current->ret_stack[index].subtime = 0;
93 /* Retrieve a function return address to the trace stack on thread info.*/
95 ftrace_pop_return_trace(struct ftrace_graph_ret *trace, unsigned long *ret)
99 index = current->curr_ret_stack;
101 if (unlikely(index < 0)) {
104 /* Might as well panic, otherwise we have no where to go */
105 *ret = (unsigned long)panic;
109 *ret = current->ret_stack[index].ret;
110 trace->func = current->ret_stack[index].func;
111 trace->calltime = current->ret_stack[index].calltime;
112 trace->overrun = atomic_read(¤t->trace_overrun);
113 trace->depth = index;
117 * Send the trace to the ring-buffer.
118 * @return the original return address.
120 unsigned long ftrace_return_to_handler(void)
122 struct ftrace_graph_ret trace;
125 ftrace_pop_return_trace(&trace, &ret);
126 trace.rettime = trace_clock_local();
127 ftrace_graph_return(&trace);
129 current->curr_ret_stack--;
131 if (unlikely(!ret)) {
134 /* Might as well panic. What else to do? */
135 ret = (unsigned long)panic;
141 static int graph_trace_init(struct trace_array *tr)
143 int ret = register_ftrace_graph(&trace_graph_return,
147 tracing_start_cmdline_record();
152 static void graph_trace_reset(struct trace_array *tr)
154 tracing_stop_cmdline_record();
155 unregister_ftrace_graph();
158 static inline int log10_cpu(int nb)
167 static enum print_line_t
168 print_graph_cpu(struct trace_seq *s, int cpu)
172 int log10_this = log10_cpu(cpu);
173 int log10_all = log10_cpu(cpumask_weight(cpu_online_mask));
177 * Start with a space character - to make it stand out
178 * to the right a bit when trace output is pasted into
181 ret = trace_seq_printf(s, " ");
184 * Tricky - we space the CPU field according to the max
185 * number of online CPUs. On a 2-cpu system it would take
186 * a maximum of 1 digit - on a 128 cpu system it would
187 * take up to 3 digits:
189 for (i = 0; i < log10_all - log10_this; i++) {
190 ret = trace_seq_printf(s, " ");
192 return TRACE_TYPE_PARTIAL_LINE;
194 ret = trace_seq_printf(s, "%d) ", cpu);
196 return TRACE_TYPE_PARTIAL_LINE;
198 return TRACE_TYPE_HANDLED;
201 #define TRACE_GRAPH_PROCINFO_LENGTH 14
203 static enum print_line_t
204 print_graph_proc(struct trace_seq *s, pid_t pid)
206 char comm[TASK_COMM_LEN];
207 /* sign + log10(MAX_INT) + '\0' */
214 trace_find_cmdline(pid, comm);
216 sprintf(pid_str, "%d", pid);
218 /* 1 stands for the "-" character */
219 len = strlen(comm) + strlen(pid_str) + 1;
221 if (len < TRACE_GRAPH_PROCINFO_LENGTH)
222 spaces = TRACE_GRAPH_PROCINFO_LENGTH - len;
224 /* First spaces to align center */
225 for (i = 0; i < spaces / 2; i++) {
226 ret = trace_seq_printf(s, " ");
228 return TRACE_TYPE_PARTIAL_LINE;
231 ret = trace_seq_printf(s, "%s-%s", comm, pid_str);
233 return TRACE_TYPE_PARTIAL_LINE;
235 /* Last spaces to align center */
236 for (i = 0; i < spaces - (spaces / 2); i++) {
237 ret = trace_seq_printf(s, " ");
239 return TRACE_TYPE_PARTIAL_LINE;
241 return TRACE_TYPE_HANDLED;
245 /* If the pid changed since the last trace, output this event */
246 static enum print_line_t
247 verif_pid(struct trace_seq *s, pid_t pid, int cpu, struct fgraph_data *data)
254 return TRACE_TYPE_HANDLED;
256 last_pid = &(per_cpu_ptr(data, cpu)->last_pid);
258 if (*last_pid == pid)
259 return TRACE_TYPE_HANDLED;
261 prev_pid = *last_pid;
265 return TRACE_TYPE_HANDLED;
267 * Context-switch trace line:
269 ------------------------------------------
270 | 1) migration/0--1 => sshd-1755
271 ------------------------------------------
274 ret = trace_seq_printf(s,
275 " ------------------------------------------\n");
277 return TRACE_TYPE_PARTIAL_LINE;
279 ret = print_graph_cpu(s, cpu);
280 if (ret == TRACE_TYPE_PARTIAL_LINE)
281 return TRACE_TYPE_PARTIAL_LINE;
283 ret = print_graph_proc(s, prev_pid);
284 if (ret == TRACE_TYPE_PARTIAL_LINE)
285 return TRACE_TYPE_PARTIAL_LINE;
287 ret = trace_seq_printf(s, " => ");
289 return TRACE_TYPE_PARTIAL_LINE;
291 ret = print_graph_proc(s, pid);
292 if (ret == TRACE_TYPE_PARTIAL_LINE)
293 return TRACE_TYPE_PARTIAL_LINE;
295 ret = trace_seq_printf(s,
296 "\n ------------------------------------------\n\n");
298 return TRACE_TYPE_PARTIAL_LINE;
300 return TRACE_TYPE_HANDLED;
303 static struct ftrace_graph_ret_entry *
304 get_return_for_leaf(struct trace_iterator *iter,
305 struct ftrace_graph_ent_entry *curr)
307 struct ring_buffer_iter *ring_iter;
308 struct ring_buffer_event *event;
309 struct ftrace_graph_ret_entry *next;
311 ring_iter = iter->buffer_iter[iter->cpu];
313 /* First peek to compare current entry and the next one */
315 event = ring_buffer_iter_peek(ring_iter, NULL);
317 /* We need to consume the current entry to see the next one */
318 ring_buffer_consume(iter->tr->buffer, iter->cpu, NULL);
319 event = ring_buffer_peek(iter->tr->buffer, iter->cpu,
326 next = ring_buffer_event_data(event);
328 if (next->ent.type != TRACE_GRAPH_RET)
331 if (curr->ent.pid != next->ent.pid ||
332 curr->graph_ent.func != next->ret.func)
335 /* this is a leaf, now advance the iterator */
337 ring_buffer_read(ring_iter, NULL);
342 /* Signal a overhead of time execution to the output */
344 print_graph_overhead(unsigned long long duration, struct trace_seq *s)
346 /* If duration disappear, we don't need anything */
347 if (!(tracer_flags.val & TRACE_GRAPH_PRINT_DURATION))
350 /* Non nested entry or return */
352 return trace_seq_printf(s, " ");
354 if (tracer_flags.val & TRACE_GRAPH_PRINT_OVERHEAD) {
355 /* Duration exceeded 100 msecs */
356 if (duration > 100000ULL)
357 return trace_seq_printf(s, "! ");
359 /* Duration exceeded 10 msecs */
360 if (duration > 10000ULL)
361 return trace_seq_printf(s, "+ ");
364 return trace_seq_printf(s, " ");
367 static int print_graph_abs_time(u64 t, struct trace_seq *s)
369 unsigned long usecs_rem;
371 usecs_rem = do_div(t, NSEC_PER_SEC);
374 return trace_seq_printf(s, "%5lu.%06lu | ",
375 (unsigned long)t, usecs_rem);
378 static enum print_line_t
379 print_graph_irq(struct trace_iterator *iter, unsigned long addr,
380 enum trace_type type, int cpu, pid_t pid)
383 struct trace_seq *s = &iter->seq;
385 if (addr < (unsigned long)__irqentry_text_start ||
386 addr >= (unsigned long)__irqentry_text_end)
387 return TRACE_TYPE_UNHANDLED;
390 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME) {
391 ret = print_graph_abs_time(iter->ts, s);
393 return TRACE_TYPE_PARTIAL_LINE;
397 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU) {
398 ret = print_graph_cpu(s, cpu);
399 if (ret == TRACE_TYPE_PARTIAL_LINE)
400 return TRACE_TYPE_PARTIAL_LINE;
403 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC) {
404 ret = print_graph_proc(s, pid);
405 if (ret == TRACE_TYPE_PARTIAL_LINE)
406 return TRACE_TYPE_PARTIAL_LINE;
407 ret = trace_seq_printf(s, " | ");
409 return TRACE_TYPE_PARTIAL_LINE;
413 ret = print_graph_overhead(-1, s);
415 return TRACE_TYPE_PARTIAL_LINE;
417 if (type == TRACE_GRAPH_ENT)
418 ret = trace_seq_printf(s, "==========>");
420 ret = trace_seq_printf(s, "<==========");
423 return TRACE_TYPE_PARTIAL_LINE;
425 /* Don't close the duration column if haven't one */
426 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION)
427 trace_seq_printf(s, " |");
428 ret = trace_seq_printf(s, "\n");
431 return TRACE_TYPE_PARTIAL_LINE;
432 return TRACE_TYPE_HANDLED;
436 trace_print_graph_duration(unsigned long long duration, struct trace_seq *s)
438 unsigned long nsecs_rem = do_div(duration, 1000);
439 /* log10(ULONG_MAX) + '\0' */
445 sprintf(msecs_str, "%lu", (unsigned long) duration);
448 ret = trace_seq_printf(s, "%s", msecs_str);
450 return TRACE_TYPE_PARTIAL_LINE;
452 len = strlen(msecs_str);
454 /* Print nsecs (we don't want to exceed 7 numbers) */
456 snprintf(nsecs_str, 8 - len, "%03lu", nsecs_rem);
457 ret = trace_seq_printf(s, ".%s", nsecs_str);
459 return TRACE_TYPE_PARTIAL_LINE;
460 len += strlen(nsecs_str);
463 ret = trace_seq_printf(s, " us ");
465 return TRACE_TYPE_PARTIAL_LINE;
467 /* Print remaining spaces to fit the row's width */
468 for (i = len; i < 7; i++) {
469 ret = trace_seq_printf(s, " ");
471 return TRACE_TYPE_PARTIAL_LINE;
473 return TRACE_TYPE_HANDLED;
476 static enum print_line_t
477 print_graph_duration(unsigned long long duration, struct trace_seq *s)
481 ret = trace_print_graph_duration(duration, s);
482 if (ret != TRACE_TYPE_HANDLED)
485 ret = trace_seq_printf(s, "| ");
487 return TRACE_TYPE_PARTIAL_LINE;
489 return TRACE_TYPE_HANDLED;
492 /* Case of a leaf function on its call entry */
493 static enum print_line_t
494 print_graph_entry_leaf(struct trace_iterator *iter,
495 struct ftrace_graph_ent_entry *entry,
496 struct ftrace_graph_ret_entry *ret_entry, struct trace_seq *s)
498 struct fgraph_data *data = iter->private;
499 struct ftrace_graph_ret *graph_ret;
500 struct ftrace_graph_ent *call;
501 unsigned long long duration;
505 graph_ret = &ret_entry->ret;
506 call = &entry->graph_ent;
507 duration = graph_ret->rettime - graph_ret->calltime;
511 int *depth = &(per_cpu_ptr(data, cpu)->depth);
514 * Comments display at + 1 to depth. Since
515 * this is a leaf function, keep the comments
516 * equal to this depth.
518 *depth = call->depth - 1;
522 ret = print_graph_overhead(duration, s);
524 return TRACE_TYPE_PARTIAL_LINE;
527 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
528 ret = print_graph_duration(duration, s);
529 if (ret == TRACE_TYPE_PARTIAL_LINE)
530 return TRACE_TYPE_PARTIAL_LINE;
534 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) {
535 ret = trace_seq_printf(s, " ");
537 return TRACE_TYPE_PARTIAL_LINE;
540 ret = seq_print_ip_sym(s, call->func, 0);
542 return TRACE_TYPE_PARTIAL_LINE;
544 ret = trace_seq_printf(s, "();\n");
546 return TRACE_TYPE_PARTIAL_LINE;
548 return TRACE_TYPE_HANDLED;
551 static enum print_line_t
552 print_graph_entry_nested(struct trace_iterator *iter,
553 struct ftrace_graph_ent_entry *entry,
554 struct trace_seq *s, int cpu)
556 struct ftrace_graph_ent *call = &entry->graph_ent;
557 struct fgraph_data *data = iter->private;
563 int *depth = &(per_cpu_ptr(data, cpu)->depth);
565 *depth = call->depth;
569 ret = print_graph_overhead(-1, s);
571 return TRACE_TYPE_PARTIAL_LINE;
574 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
575 ret = trace_seq_printf(s, " | ");
577 return TRACE_TYPE_PARTIAL_LINE;
581 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) {
582 ret = trace_seq_printf(s, " ");
584 return TRACE_TYPE_PARTIAL_LINE;
587 ret = seq_print_ip_sym(s, call->func, 0);
589 return TRACE_TYPE_PARTIAL_LINE;
591 ret = trace_seq_printf(s, "() {\n");
593 return TRACE_TYPE_PARTIAL_LINE;
596 * we already consumed the current entry to check the next one
597 * and see if this is a leaf.
599 return TRACE_TYPE_NO_CONSUME;
602 static enum print_line_t
603 print_graph_prologue(struct trace_iterator *iter, struct trace_seq *s,
604 int type, unsigned long addr)
606 struct fgraph_data *data = iter->private;
607 struct trace_entry *ent = iter->ent;
612 if (verif_pid(s, ent->pid, cpu, data) == TRACE_TYPE_PARTIAL_LINE)
613 return TRACE_TYPE_PARTIAL_LINE;
617 ret = print_graph_irq(iter, addr, type, cpu, ent->pid);
618 if (ret == TRACE_TYPE_PARTIAL_LINE)
619 return TRACE_TYPE_PARTIAL_LINE;
623 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME) {
624 ret = print_graph_abs_time(iter->ts, s);
626 return TRACE_TYPE_PARTIAL_LINE;
630 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU) {
631 ret = print_graph_cpu(s, cpu);
632 if (ret == TRACE_TYPE_PARTIAL_LINE)
633 return TRACE_TYPE_PARTIAL_LINE;
637 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC) {
638 ret = print_graph_proc(s, ent->pid);
639 if (ret == TRACE_TYPE_PARTIAL_LINE)
640 return TRACE_TYPE_PARTIAL_LINE;
642 ret = trace_seq_printf(s, " | ");
644 return TRACE_TYPE_PARTIAL_LINE;
650 static enum print_line_t
651 print_graph_entry(struct ftrace_graph_ent_entry *field, struct trace_seq *s,
652 struct trace_iterator *iter)
655 struct ftrace_graph_ent *call = &field->graph_ent;
656 struct ftrace_graph_ret_entry *leaf_ret;
658 if (print_graph_prologue(iter, s, TRACE_GRAPH_ENT, call->func))
659 return TRACE_TYPE_PARTIAL_LINE;
661 leaf_ret = get_return_for_leaf(iter, field);
663 return print_graph_entry_leaf(iter, field, leaf_ret, s);
665 return print_graph_entry_nested(iter, field, s, cpu);
669 static enum print_line_t
670 print_graph_return(struct ftrace_graph_ret *trace, struct trace_seq *s,
671 struct trace_entry *ent, struct trace_iterator *iter)
673 unsigned long long duration = trace->rettime - trace->calltime;
674 struct fgraph_data *data = iter->private;
675 pid_t pid = ent->pid;
682 int *depth = &(per_cpu_ptr(data, cpu)->depth);
685 * Comments display at + 1 to depth. This is the
686 * return from a function, we now want the comments
687 * to display at the same level of the bracket.
689 *depth = trace->depth - 1;
692 if (print_graph_prologue(iter, s, 0, 0))
693 return TRACE_TYPE_PARTIAL_LINE;
696 ret = print_graph_overhead(duration, s);
698 return TRACE_TYPE_PARTIAL_LINE;
701 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
702 ret = print_graph_duration(duration, s);
703 if (ret == TRACE_TYPE_PARTIAL_LINE)
704 return TRACE_TYPE_PARTIAL_LINE;
708 for (i = 0; i < trace->depth * TRACE_GRAPH_INDENT; i++) {
709 ret = trace_seq_printf(s, " ");
711 return TRACE_TYPE_PARTIAL_LINE;
714 ret = trace_seq_printf(s, "}\n");
716 return TRACE_TYPE_PARTIAL_LINE;
719 if (tracer_flags.val & TRACE_GRAPH_PRINT_OVERRUN) {
720 ret = trace_seq_printf(s, " (Overruns: %lu)\n",
723 return TRACE_TYPE_PARTIAL_LINE;
726 ret = print_graph_irq(iter, trace->func, TRACE_GRAPH_RET, cpu, pid);
727 if (ret == TRACE_TYPE_PARTIAL_LINE)
728 return TRACE_TYPE_PARTIAL_LINE;
730 return TRACE_TYPE_HANDLED;
733 static enum print_line_t
734 print_graph_comment(struct trace_seq *s, struct trace_entry *ent,
735 struct trace_iterator *iter)
737 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
738 struct fgraph_data *data = iter->private;
739 struct trace_event *event;
745 depth = per_cpu_ptr(data, iter->cpu)->depth;
747 if (print_graph_prologue(iter, s, 0, 0))
748 return TRACE_TYPE_PARTIAL_LINE;
751 ret = print_graph_overhead(-1, s);
753 return TRACE_TYPE_PARTIAL_LINE;
756 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION) {
757 ret = trace_seq_printf(s, " | ");
759 return TRACE_TYPE_PARTIAL_LINE;
764 for (i = 0; i < (depth + 1) * TRACE_GRAPH_INDENT; i++) {
765 ret = trace_seq_printf(s, " ");
767 return TRACE_TYPE_PARTIAL_LINE;
771 ret = trace_seq_printf(s, "/* ");
773 return TRACE_TYPE_PARTIAL_LINE;
775 switch (iter->ent->type) {
777 ret = trace_print_bprintk_msg_only(iter);
778 if (ret != TRACE_TYPE_HANDLED)
782 ret = trace_print_printk_msg_only(iter);
783 if (ret != TRACE_TYPE_HANDLED)
787 event = ftrace_find_event(ent->type);
789 return TRACE_TYPE_UNHANDLED;
791 ret = event->trace(iter, sym_flags);
792 if (ret != TRACE_TYPE_HANDLED)
796 /* Strip ending newline */
797 if (s->buffer[s->len - 1] == '\n') {
798 s->buffer[s->len - 1] = '\0';
802 ret = trace_seq_printf(s, " */\n");
804 return TRACE_TYPE_PARTIAL_LINE;
806 return TRACE_TYPE_HANDLED;
811 print_graph_function(struct trace_iterator *iter)
813 struct trace_entry *entry = iter->ent;
814 struct trace_seq *s = &iter->seq;
816 switch (entry->type) {
817 case TRACE_GRAPH_ENT: {
818 struct ftrace_graph_ent_entry *field;
819 trace_assign_type(field, entry);
820 return print_graph_entry(field, s, iter);
822 case TRACE_GRAPH_RET: {
823 struct ftrace_graph_ret_entry *field;
824 trace_assign_type(field, entry);
825 return print_graph_return(&field->ret, s, entry, iter);
828 return print_graph_comment(s, entry, iter);
831 return TRACE_TYPE_HANDLED;
834 static void print_graph_headers(struct seq_file *s)
838 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME)
839 seq_printf(s, " TIME ");
840 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU)
841 seq_printf(s, "CPU");
842 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC)
843 seq_printf(s, " TASK/PID ");
844 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION)
845 seq_printf(s, " DURATION ");
846 seq_printf(s, " FUNCTION CALLS\n");
850 if (tracer_flags.val & TRACE_GRAPH_PRINT_ABS_TIME)
851 seq_printf(s, " | ");
852 if (tracer_flags.val & TRACE_GRAPH_PRINT_CPU)
854 if (tracer_flags.val & TRACE_GRAPH_PRINT_PROC)
855 seq_printf(s, " | | ");
856 if (tracer_flags.val & TRACE_GRAPH_PRINT_DURATION)
857 seq_printf(s, " | | ");
858 seq_printf(s, " | | | |\n");
861 static void graph_trace_open(struct trace_iterator *iter)
863 /* pid and depth on the last trace processed */
864 struct fgraph_data *data = alloc_percpu(struct fgraph_data);
868 pr_warning("function graph tracer: not enough memory\n");
870 for_each_possible_cpu(cpu) {
871 pid_t *pid = &(per_cpu_ptr(data, cpu)->last_pid);
872 int *depth = &(per_cpu_ptr(data, cpu)->depth);
877 iter->private = data;
880 static void graph_trace_close(struct trace_iterator *iter)
882 free_percpu(iter->private);
885 static struct tracer graph_trace __read_mostly = {
886 .name = "function_graph",
887 .open = graph_trace_open,
888 .close = graph_trace_close,
889 .wait_pipe = poll_wait_pipe,
890 .init = graph_trace_init,
891 .reset = graph_trace_reset,
892 .print_line = print_graph_function,
893 .print_header = print_graph_headers,
894 .flags = &tracer_flags,
895 #ifdef CONFIG_FTRACE_SELFTEST
896 .selftest = trace_selftest_startup_function_graph,
900 static __init int init_graph_trace(void)
902 return register_tracer(&graph_trace);
905 device_initcall(init_graph_trace);