tracepoints: Add check trace callback type
[deliverable/linux.git] / kernel / trace / trace_sched_wakeup.c
CommitLineData
352ad25a
SR
1/*
2 * trace task wakeup timings
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Based on code from the latency_tracer, that is:
8 *
9 * Copyright (C) 2004-2006 Ingo Molnar
10 * Copyright (C) 2004 William Lee Irwin III
11 */
12#include <linux/module.h>
13#include <linux/fs.h>
14#include <linux/debugfs.h>
15#include <linux/kallsyms.h>
16#include <linux/uaccess.h>
17#include <linux/ftrace.h>
ad8d75ff 18#include <trace/events/sched.h>
352ad25a
SR
19
20#include "trace.h"
21
22static struct trace_array *wakeup_trace;
23static int __read_mostly tracer_enabled;
24
25static struct task_struct *wakeup_task;
26static int wakeup_cpu;
478142c3 27static int wakeup_current_cpu;
352ad25a 28static unsigned wakeup_prio = -1;
3244351c 29static int wakeup_rt;
352ad25a 30
445c8951 31static arch_spinlock_t wakeup_lock =
edc35bd7 32 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
352ad25a 33
e309b41d 34static void __wakeup_reset(struct trace_array *tr);
352ad25a 35
e9d25fe6
SR
36static int save_lat_flag;
37
606576ce 38#ifdef CONFIG_FUNCTION_TRACER
7e18d8e7
SR
39/*
40 * irqsoff uses its own tracer function to keep the overhead down:
41 */
42static void
43wakeup_tracer_call(unsigned long ip, unsigned long parent_ip)
44{
45 struct trace_array *tr = wakeup_trace;
46 struct trace_array_cpu *data;
47 unsigned long flags;
48 long disabled;
49 int resched;
50 int cpu;
38697053 51 int pc;
7e18d8e7
SR
52
53 if (likely(!wakeup_task))
54 return;
55
38697053 56 pc = preempt_count();
182e9f5f 57 resched = ftrace_preempt_disable();
7e18d8e7
SR
58
59 cpu = raw_smp_processor_id();
478142c3
SR
60 if (cpu != wakeup_current_cpu)
61 goto out_enable;
62
7e18d8e7
SR
63 data = tr->data[cpu];
64 disabled = atomic_inc_return(&data->disabled);
65 if (unlikely(disabled != 1))
66 goto out;
67
e59494f4 68 local_irq_save(flags);
7e18d8e7 69
7be42151 70 trace_function(tr, ip, parent_ip, flags, pc);
7e18d8e7 71
e59494f4 72 local_irq_restore(flags);
7e18d8e7
SR
73
74 out:
75 atomic_dec(&data->disabled);
478142c3 76 out_enable:
182e9f5f 77 ftrace_preempt_enable(resched);
7e18d8e7
SR
78}
79
80static struct ftrace_ops trace_ops __read_mostly =
81{
82 .func = wakeup_tracer_call,
83};
606576ce 84#endif /* CONFIG_FUNCTION_TRACER */
7e18d8e7 85
352ad25a
SR
86/*
87 * Should this new latency be reported/recorded?
88 */
e309b41d 89static int report_latency(cycle_t delta)
352ad25a
SR
90{
91 if (tracing_thresh) {
92 if (delta < tracing_thresh)
93 return 0;
94 } else {
95 if (delta <= tracing_max_latency)
96 return 0;
97 }
98 return 1;
99}
100
478142c3
SR
101static void probe_wakeup_migrate_task(struct task_struct *task, int cpu)
102{
103 if (task != wakeup_task)
104 return;
105
106 wakeup_current_cpu = cpu;
107}
108
5b82a1b0 109static void notrace
27a9da65 110probe_wakeup_sched_switch(struct task_struct *prev, struct task_struct *next)
352ad25a 111{
352ad25a
SR
112 struct trace_array_cpu *data;
113 cycle_t T0, T1, delta;
114 unsigned long flags;
115 long disabled;
116 int cpu;
38697053 117 int pc;
352ad25a 118
b07c3f19
MD
119 tracing_record_cmdline(prev);
120
352ad25a
SR
121 if (unlikely(!tracer_enabled))
122 return;
123
124 /*
125 * When we start a new trace, we set wakeup_task to NULL
126 * and then set tracer_enabled = 1. We want to make sure
127 * that another CPU does not see the tracer_enabled = 1
128 * and the wakeup_task with an older task, that might
129 * actually be the same as next.
130 */
131 smp_rmb();
132
133 if (next != wakeup_task)
134 return;
135
38697053
SR
136 pc = preempt_count();
137
352ad25a
SR
138 /* disable local data, not wakeup_cpu data */
139 cpu = raw_smp_processor_id();
b07c3f19 140 disabled = atomic_inc_return(&wakeup_trace->data[cpu]->disabled);
352ad25a
SR
141 if (likely(disabled != 1))
142 goto out;
143
e59494f4 144 local_irq_save(flags);
0199c4e6 145 arch_spin_lock(&wakeup_lock);
352ad25a
SR
146
147 /* We could race with grabbing wakeup_lock */
148 if (unlikely(!tracer_enabled || next != wakeup_task))
149 goto out_unlock;
150
9be24414
SR
151 /* The task we are waiting for is waking up */
152 data = wakeup_trace->data[wakeup_cpu];
153
301fd748 154 trace_function(wakeup_trace, CALLER_ADDR0, CALLER_ADDR1, flags, pc);
7be42151 155 tracing_sched_switch_trace(wakeup_trace, prev, next, flags, pc);
352ad25a 156
352ad25a 157 T0 = data->preempt_timestamp;
750ed1a4 158 T1 = ftrace_now(cpu);
352ad25a
SR
159 delta = T1-T0;
160
161 if (!report_latency(delta))
162 goto out_unlock;
163
b5130b1e
CE
164 if (likely(!is_tracing_stopped())) {
165 tracing_max_latency = delta;
166 update_max_tr(wakeup_trace, wakeup_task, wakeup_cpu);
167 }
352ad25a 168
352ad25a 169out_unlock:
b07c3f19 170 __wakeup_reset(wakeup_trace);
0199c4e6 171 arch_spin_unlock(&wakeup_lock);
e59494f4 172 local_irq_restore(flags);
352ad25a 173out:
b07c3f19 174 atomic_dec(&wakeup_trace->data[cpu]->disabled);
5b82a1b0
MD
175}
176
e309b41d 177static void __wakeup_reset(struct trace_array *tr)
352ad25a 178{
352ad25a
SR
179 wakeup_cpu = -1;
180 wakeup_prio = -1;
181
182 if (wakeup_task)
183 put_task_struct(wakeup_task);
184
185 wakeup_task = NULL;
186}
187
e309b41d 188static void wakeup_reset(struct trace_array *tr)
352ad25a
SR
189{
190 unsigned long flags;
191
2f26ebd5
SR
192 tracing_reset_online_cpus(tr);
193
e59494f4 194 local_irq_save(flags);
0199c4e6 195 arch_spin_lock(&wakeup_lock);
352ad25a 196 __wakeup_reset(tr);
0199c4e6 197 arch_spin_unlock(&wakeup_lock);
e59494f4 198 local_irq_restore(flags);
352ad25a
SR
199}
200
e309b41d 201static void
27a9da65 202probe_wakeup(struct task_struct *p, int success)
352ad25a 203{
f8ec1062 204 struct trace_array_cpu *data;
352ad25a
SR
205 int cpu = smp_processor_id();
206 unsigned long flags;
207 long disabled;
38697053 208 int pc;
352ad25a 209
b07c3f19
MD
210 if (likely(!tracer_enabled))
211 return;
212
213 tracing_record_cmdline(p);
214 tracing_record_cmdline(current);
215
3244351c 216 if ((wakeup_rt && !rt_task(p)) ||
352ad25a 217 p->prio >= wakeup_prio ||
b07c3f19 218 p->prio >= current->prio)
352ad25a
SR
219 return;
220
38697053 221 pc = preempt_count();
b07c3f19 222 disabled = atomic_inc_return(&wakeup_trace->data[cpu]->disabled);
352ad25a
SR
223 if (unlikely(disabled != 1))
224 goto out;
225
226 /* interrupts should be off from try_to_wake_up */
0199c4e6 227 arch_spin_lock(&wakeup_lock);
352ad25a
SR
228
229 /* check for races. */
230 if (!tracer_enabled || p->prio >= wakeup_prio)
231 goto out_locked;
232
233 /* reset the trace */
b07c3f19 234 __wakeup_reset(wakeup_trace);
352ad25a
SR
235
236 wakeup_cpu = task_cpu(p);
478142c3 237 wakeup_current_cpu = wakeup_cpu;
352ad25a
SR
238 wakeup_prio = p->prio;
239
240 wakeup_task = p;
241 get_task_struct(wakeup_task);
242
243 local_save_flags(flags);
244
f8ec1062
SR
245 data = wakeup_trace->data[wakeup_cpu];
246 data->preempt_timestamp = ftrace_now(cpu);
7be42151 247 tracing_sched_wakeup_trace(wakeup_trace, p, current, flags, pc);
301fd748
SR
248
249 /*
250 * We must be careful in using CALLER_ADDR2. But since wake_up
251 * is not called by an assembly function (where as schedule is)
252 * it should be safe to use it here.
253 */
7be42151 254 trace_function(wakeup_trace, CALLER_ADDR1, CALLER_ADDR2, flags, pc);
352ad25a
SR
255
256out_locked:
0199c4e6 257 arch_spin_unlock(&wakeup_lock);
352ad25a 258out:
b07c3f19 259 atomic_dec(&wakeup_trace->data[cpu]->disabled);
352ad25a
SR
260}
261
e309b41d 262static void start_wakeup_tracer(struct trace_array *tr)
352ad25a 263{
5b82a1b0
MD
264 int ret;
265
b07c3f19 266 ret = register_trace_sched_wakeup(probe_wakeup);
5b82a1b0 267 if (ret) {
b07c3f19 268 pr_info("wakeup trace: Couldn't activate tracepoint"
5b82a1b0
MD
269 " probe to kernel_sched_wakeup\n");
270 return;
271 }
272
b07c3f19 273 ret = register_trace_sched_wakeup_new(probe_wakeup);
5b82a1b0 274 if (ret) {
b07c3f19 275 pr_info("wakeup trace: Couldn't activate tracepoint"
5b82a1b0
MD
276 " probe to kernel_sched_wakeup_new\n");
277 goto fail_deprobe;
278 }
279
b07c3f19 280 ret = register_trace_sched_switch(probe_wakeup_sched_switch);
5b82a1b0 281 if (ret) {
b07c3f19 282 pr_info("sched trace: Couldn't activate tracepoint"
73d8b8bc 283 " probe to kernel_sched_switch\n");
5b82a1b0
MD
284 goto fail_deprobe_wake_new;
285 }
286
478142c3
SR
287 ret = register_trace_sched_migrate_task(probe_wakeup_migrate_task);
288 if (ret) {
289 pr_info("wakeup trace: Couldn't activate tracepoint"
290 " probe to kernel_sched_migrate_task\n");
291 return;
292 }
293
352ad25a
SR
294 wakeup_reset(tr);
295
296 /*
297 * Don't let the tracer_enabled = 1 show up before
298 * the wakeup_task is reset. This may be overkill since
299 * wakeup_reset does a spin_unlock after setting the
300 * wakeup_task to NULL, but I want to be safe.
301 * This is a slow path anyway.
302 */
303 smp_wmb();
304
7e18d8e7 305 register_ftrace_function(&trace_ops);
352ad25a 306
5bc4564b 307 if (tracing_is_enabled())
9036990d 308 tracer_enabled = 1;
5bc4564b 309 else
9036990d 310 tracer_enabled = 0;
ad591240 311
352ad25a 312 return;
5b82a1b0 313fail_deprobe_wake_new:
b07c3f19 314 unregister_trace_sched_wakeup_new(probe_wakeup);
5b82a1b0 315fail_deprobe:
b07c3f19 316 unregister_trace_sched_wakeup(probe_wakeup);
352ad25a
SR
317}
318
e309b41d 319static void stop_wakeup_tracer(struct trace_array *tr)
352ad25a
SR
320{
321 tracer_enabled = 0;
7e18d8e7 322 unregister_ftrace_function(&trace_ops);
b07c3f19
MD
323 unregister_trace_sched_switch(probe_wakeup_sched_switch);
324 unregister_trace_sched_wakeup_new(probe_wakeup);
325 unregister_trace_sched_wakeup(probe_wakeup);
478142c3 326 unregister_trace_sched_migrate_task(probe_wakeup_migrate_task);
352ad25a
SR
327}
328
3244351c 329static int __wakeup_tracer_init(struct trace_array *tr)
352ad25a 330{
e9d25fe6
SR
331 save_lat_flag = trace_flags & TRACE_ITER_LATENCY_FMT;
332 trace_flags |= TRACE_ITER_LATENCY_FMT;
333
745b1626 334 tracing_max_latency = 0;
352ad25a 335 wakeup_trace = tr;
c76f0694 336 start_wakeup_tracer(tr);
1c80025a 337 return 0;
352ad25a
SR
338}
339
3244351c
SR
340static int wakeup_tracer_init(struct trace_array *tr)
341{
342 wakeup_rt = 0;
343 return __wakeup_tracer_init(tr);
344}
345
346static int wakeup_rt_tracer_init(struct trace_array *tr)
347{
348 wakeup_rt = 1;
349 return __wakeup_tracer_init(tr);
350}
351
e309b41d 352static void wakeup_tracer_reset(struct trace_array *tr)
352ad25a 353{
c76f0694
SR
354 stop_wakeup_tracer(tr);
355 /* make sure we put back any tasks we are tracing */
356 wakeup_reset(tr);
e9d25fe6
SR
357
358 if (!save_lat_flag)
359 trace_flags &= ~TRACE_ITER_LATENCY_FMT;
352ad25a
SR
360}
361
9036990d
SR
362static void wakeup_tracer_start(struct trace_array *tr)
363{
364 wakeup_reset(tr);
365 tracer_enabled = 1;
9036990d
SR
366}
367
368static void wakeup_tracer_stop(struct trace_array *tr)
369{
370 tracer_enabled = 0;
352ad25a
SR
371}
372
373static struct tracer wakeup_tracer __read_mostly =
374{
375 .name = "wakeup",
376 .init = wakeup_tracer_init,
377 .reset = wakeup_tracer_reset,
9036990d
SR
378 .start = wakeup_tracer_start,
379 .stop = wakeup_tracer_stop,
352ad25a 380 .print_max = 1,
60a11774
SR
381#ifdef CONFIG_FTRACE_SELFTEST
382 .selftest = trace_selftest_startup_wakeup,
383#endif
352ad25a
SR
384};
385
3244351c
SR
386static struct tracer wakeup_rt_tracer __read_mostly =
387{
388 .name = "wakeup_rt",
389 .init = wakeup_rt_tracer_init,
390 .reset = wakeup_tracer_reset,
391 .start = wakeup_tracer_start,
392 .stop = wakeup_tracer_stop,
6eaaa5d5 393 .wait_pipe = poll_wait_pipe,
3244351c
SR
394 .print_max = 1,
395#ifdef CONFIG_FTRACE_SELFTEST
396 .selftest = trace_selftest_startup_wakeup,
397#endif
398};
399
352ad25a
SR
400__init static int init_wakeup_tracer(void)
401{
402 int ret;
403
404 ret = register_tracer(&wakeup_tracer);
405 if (ret)
406 return ret;
407
3244351c
SR
408 ret = register_tracer(&wakeup_rt_tracer);
409 if (ret)
410 return ret;
411
352ad25a
SR
412 return 0;
413}
414device_initcall(init_wakeup_tracer);
This page took 0.12626 seconds and 5 git commands to generate.