Ingo Molnar | f06c381 | 2008-05-12 21:20:47 +0200 | [diff] [blame^] | 1 | /* |
| 2 | * trace stack traces |
| 3 | * |
| 4 | * Copyright (C) 2007 Steven Rostedt <srostedt@redhat.com> |
| 5 | * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com> |
| 6 | * |
| 7 | */ |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/fs.h> |
| 10 | #include <linux/debugfs.h> |
| 11 | #include <linux/kallsyms.h> |
| 12 | #include <linux/uaccess.h> |
| 13 | #include <linux/marker.h> |
| 14 | #include <linux/ftrace.h> |
| 15 | |
| 16 | #include "trace.h" |
| 17 | |
| 18 | static struct trace_array *ctx_trace; |
| 19 | static int __read_mostly tracer_enabled; |
| 20 | |
| 21 | static notrace void stack_reset(struct trace_array *tr) |
| 22 | { |
| 23 | int cpu; |
| 24 | |
| 25 | tr->time_start = ftrace_now(tr->cpu); |
| 26 | |
| 27 | for_each_online_cpu(cpu) |
| 28 | tracing_reset(tr->data[cpu]); |
| 29 | } |
| 30 | |
| 31 | static notrace void start_stack_trace(struct trace_array *tr) |
| 32 | { |
| 33 | stack_reset(tr); |
| 34 | tracer_enabled = 1; |
| 35 | } |
| 36 | |
| 37 | static notrace void stop_stack_trace(struct trace_array *tr) |
| 38 | { |
| 39 | tracer_enabled = 0; |
| 40 | } |
| 41 | |
| 42 | static notrace void stack_trace_init(struct trace_array *tr) |
| 43 | { |
| 44 | ctx_trace = tr; |
| 45 | |
| 46 | if (tr->ctrl) |
| 47 | start_stack_trace(tr); |
| 48 | } |
| 49 | |
| 50 | static notrace void stack_trace_reset(struct trace_array *tr) |
| 51 | { |
| 52 | if (tr->ctrl) |
| 53 | stop_stack_trace(tr); |
| 54 | } |
| 55 | |
| 56 | static void stack_trace_ctrl_update(struct trace_array *tr) |
| 57 | { |
| 58 | /* When starting a new trace, reset the buffers */ |
| 59 | if (tr->ctrl) |
| 60 | start_stack_trace(tr); |
| 61 | else |
| 62 | stop_stack_trace(tr); |
| 63 | } |
| 64 | |
| 65 | static struct tracer stack_trace __read_mostly = |
| 66 | { |
| 67 | .name = "sysprof", |
| 68 | .init = stack_trace_init, |
| 69 | .reset = stack_trace_reset, |
| 70 | .ctrl_update = stack_trace_ctrl_update, |
| 71 | #ifdef CONFIG_FTRACE_SELFTEST |
| 72 | .selftest = trace_selftest_startup_stack, |
| 73 | #endif |
| 74 | }; |
| 75 | |
| 76 | __init static int init_stack_trace(void) |
| 77 | { |
| 78 | return register_tracer(&stack_trace); |
| 79 | } |
| 80 | device_initcall(init_stack_trace); |