net/at91_ether: use macb defs for rx dma buffers
[linux-2.6/btrfs-unstable.git] / kernel / trace / trace_sched_wakeup.c
blob02170c00c413731c91e2f76f6d82f3a09582e053
1 /*
2 * trace task wakeup timings
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
7 * Based on code from the latency_tracer, that is:
9 * Copyright (C) 2004-2006 Ingo Molnar
10 * Copyright (C) 2004 William Lee Irwin III
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>
18 #include <trace/events/sched.h>
20 #include "trace.h"
22 static struct trace_array *wakeup_trace;
23 static int __read_mostly tracer_enabled;
25 static struct task_struct *wakeup_task;
26 static int wakeup_cpu;
27 static int wakeup_current_cpu;
28 static unsigned wakeup_prio = -1;
29 static int wakeup_rt;
31 static arch_spinlock_t wakeup_lock =
32 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
34 static void wakeup_reset(struct trace_array *tr);
35 static void __wakeup_reset(struct trace_array *tr);
36 static int wakeup_graph_entry(struct ftrace_graph_ent *trace);
37 static void wakeup_graph_return(struct ftrace_graph_ret *trace);
39 static int save_lat_flag;
41 #define TRACE_DISPLAY_GRAPH 1
43 static struct tracer_opt trace_opts[] = {
44 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
45 /* display latency trace as call graph */
46 { TRACER_OPT(display-graph, TRACE_DISPLAY_GRAPH) },
47 #endif
48 { } /* Empty entry */
51 static struct tracer_flags tracer_flags = {
52 .val = 0,
53 .opts = trace_opts,
56 #define is_graph() (tracer_flags.val & TRACE_DISPLAY_GRAPH)
58 #ifdef CONFIG_FUNCTION_TRACER
61 * Prologue for the wakeup function tracers.
63 * Returns 1 if it is OK to continue, and preemption
64 * is disabled and data->disabled is incremented.
65 * 0 if the trace is to be ignored, and preemption
66 * is not disabled and data->disabled is
67 * kept the same.
69 * Note, this function is also used outside this ifdef but
70 * inside the #ifdef of the function graph tracer below.
71 * This is OK, since the function graph tracer is
72 * dependent on the function tracer.
74 static int
75 func_prolog_preempt_disable(struct trace_array *tr,
76 struct trace_array_cpu **data,
77 int *pc)
79 long disabled;
80 int cpu;
82 if (likely(!wakeup_task))
83 return 0;
85 *pc = preempt_count();
86 preempt_disable_notrace();
88 cpu = raw_smp_processor_id();
89 if (cpu != wakeup_current_cpu)
90 goto out_enable;
92 *data = tr->data[cpu];
93 disabled = atomic_inc_return(&(*data)->disabled);
94 if (unlikely(disabled != 1))
95 goto out;
97 return 1;
99 out:
100 atomic_dec(&(*data)->disabled);
102 out_enable:
103 preempt_enable_notrace();
104 return 0;
108 * wakeup uses its own tracer function to keep the overhead down:
110 static void
111 wakeup_tracer_call(unsigned long ip, unsigned long parent_ip,
112 struct ftrace_ops *op, struct pt_regs *pt_regs)
114 struct trace_array *tr = wakeup_trace;
115 struct trace_array_cpu *data;
116 unsigned long flags;
117 int pc;
119 if (!func_prolog_preempt_disable(tr, &data, &pc))
120 return;
122 local_irq_save(flags);
123 trace_function(tr, ip, parent_ip, flags, pc);
124 local_irq_restore(flags);
126 atomic_dec(&data->disabled);
127 preempt_enable_notrace();
130 static struct ftrace_ops trace_ops __read_mostly =
132 .func = wakeup_tracer_call,
133 .flags = FTRACE_OPS_FL_GLOBAL | FTRACE_OPS_FL_RECURSION_SAFE,
135 #endif /* CONFIG_FUNCTION_TRACER */
137 static int start_func_tracer(int graph)
139 int ret;
141 if (!graph)
142 ret = register_ftrace_function(&trace_ops);
143 else
144 ret = register_ftrace_graph(&wakeup_graph_return,
145 &wakeup_graph_entry);
147 if (!ret && tracing_is_enabled())
148 tracer_enabled = 1;
149 else
150 tracer_enabled = 0;
152 return ret;
155 static void stop_func_tracer(int graph)
157 tracer_enabled = 0;
159 if (!graph)
160 unregister_ftrace_function(&trace_ops);
161 else
162 unregister_ftrace_graph();
165 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
166 static int wakeup_set_flag(u32 old_flags, u32 bit, int set)
169 if (!(bit & TRACE_DISPLAY_GRAPH))
170 return -EINVAL;
172 if (!(is_graph() ^ set))
173 return 0;
175 stop_func_tracer(!set);
177 wakeup_reset(wakeup_trace);
178 tracing_max_latency = 0;
180 return start_func_tracer(set);
183 static int wakeup_graph_entry(struct ftrace_graph_ent *trace)
185 struct trace_array *tr = wakeup_trace;
186 struct trace_array_cpu *data;
187 unsigned long flags;
188 int pc, ret = 0;
190 if (!func_prolog_preempt_disable(tr, &data, &pc))
191 return 0;
193 local_save_flags(flags);
194 ret = __trace_graph_entry(tr, trace, flags, pc);
195 atomic_dec(&data->disabled);
196 preempt_enable_notrace();
198 return ret;
201 static void wakeup_graph_return(struct ftrace_graph_ret *trace)
203 struct trace_array *tr = wakeup_trace;
204 struct trace_array_cpu *data;
205 unsigned long flags;
206 int pc;
208 if (!func_prolog_preempt_disable(tr, &data, &pc))
209 return;
211 local_save_flags(flags);
212 __trace_graph_return(tr, trace, flags, pc);
213 atomic_dec(&data->disabled);
215 preempt_enable_notrace();
216 return;
219 static void wakeup_trace_open(struct trace_iterator *iter)
221 if (is_graph())
222 graph_trace_open(iter);
225 static void wakeup_trace_close(struct trace_iterator *iter)
227 if (iter->private)
228 graph_trace_close(iter);
231 #define GRAPH_TRACER_FLAGS (TRACE_GRAPH_PRINT_PROC | \
232 TRACE_GRAPH_PRINT_ABS_TIME | \
233 TRACE_GRAPH_PRINT_DURATION)
235 static enum print_line_t wakeup_print_line(struct trace_iterator *iter)
238 * In graph mode call the graph tracer output function,
239 * otherwise go with the TRACE_FN event handler
241 if (is_graph())
242 return print_graph_function_flags(iter, GRAPH_TRACER_FLAGS);
244 return TRACE_TYPE_UNHANDLED;
247 static void wakeup_print_header(struct seq_file *s)
249 if (is_graph())
250 print_graph_headers_flags(s, GRAPH_TRACER_FLAGS);
251 else
252 trace_default_header(s);
255 static void
256 __trace_function(struct trace_array *tr,
257 unsigned long ip, unsigned long parent_ip,
258 unsigned long flags, int pc)
260 if (is_graph())
261 trace_graph_function(tr, ip, parent_ip, flags, pc);
262 else
263 trace_function(tr, ip, parent_ip, flags, pc);
265 #else
266 #define __trace_function trace_function
268 static int wakeup_set_flag(u32 old_flags, u32 bit, int set)
270 return -EINVAL;
273 static int wakeup_graph_entry(struct ftrace_graph_ent *trace)
275 return -1;
278 static enum print_line_t wakeup_print_line(struct trace_iterator *iter)
280 return TRACE_TYPE_UNHANDLED;
283 static void wakeup_graph_return(struct ftrace_graph_ret *trace) { }
284 static void wakeup_trace_open(struct trace_iterator *iter) { }
285 static void wakeup_trace_close(struct trace_iterator *iter) { }
287 #ifdef CONFIG_FUNCTION_TRACER
288 static void wakeup_print_header(struct seq_file *s)
290 trace_default_header(s);
292 #else
293 static void wakeup_print_header(struct seq_file *s)
295 trace_latency_header(s);
297 #endif /* CONFIG_FUNCTION_TRACER */
298 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
301 * Should this new latency be reported/recorded?
303 static int report_latency(cycle_t delta)
305 if (tracing_thresh) {
306 if (delta < tracing_thresh)
307 return 0;
308 } else {
309 if (delta <= tracing_max_latency)
310 return 0;
312 return 1;
315 static void
316 probe_wakeup_migrate_task(void *ignore, struct task_struct *task, int cpu)
318 if (task != wakeup_task)
319 return;
321 wakeup_current_cpu = cpu;
324 static void notrace
325 probe_wakeup_sched_switch(void *ignore,
326 struct task_struct *prev, struct task_struct *next)
328 struct trace_array_cpu *data;
329 cycle_t T0, T1, delta;
330 unsigned long flags;
331 long disabled;
332 int cpu;
333 int pc;
335 tracing_record_cmdline(prev);
337 if (unlikely(!tracer_enabled))
338 return;
341 * When we start a new trace, we set wakeup_task to NULL
342 * and then set tracer_enabled = 1. We want to make sure
343 * that another CPU does not see the tracer_enabled = 1
344 * and the wakeup_task with an older task, that might
345 * actually be the same as next.
347 smp_rmb();
349 if (next != wakeup_task)
350 return;
352 pc = preempt_count();
354 /* disable local data, not wakeup_cpu data */
355 cpu = raw_smp_processor_id();
356 disabled = atomic_inc_return(&wakeup_trace->data[cpu]->disabled);
357 if (likely(disabled != 1))
358 goto out;
360 local_irq_save(flags);
361 arch_spin_lock(&wakeup_lock);
363 /* We could race with grabbing wakeup_lock */
364 if (unlikely(!tracer_enabled || next != wakeup_task))
365 goto out_unlock;
367 /* The task we are waiting for is waking up */
368 data = wakeup_trace->data[wakeup_cpu];
370 __trace_function(wakeup_trace, CALLER_ADDR0, CALLER_ADDR1, flags, pc);
371 tracing_sched_switch_trace(wakeup_trace, prev, next, flags, pc);
373 T0 = data->preempt_timestamp;
374 T1 = ftrace_now(cpu);
375 delta = T1-T0;
377 if (!report_latency(delta))
378 goto out_unlock;
380 if (likely(!is_tracing_stopped())) {
381 tracing_max_latency = delta;
382 update_max_tr(wakeup_trace, wakeup_task, wakeup_cpu);
385 out_unlock:
386 __wakeup_reset(wakeup_trace);
387 arch_spin_unlock(&wakeup_lock);
388 local_irq_restore(flags);
389 out:
390 atomic_dec(&wakeup_trace->data[cpu]->disabled);
393 static void __wakeup_reset(struct trace_array *tr)
395 wakeup_cpu = -1;
396 wakeup_prio = -1;
398 if (wakeup_task)
399 put_task_struct(wakeup_task);
401 wakeup_task = NULL;
404 static void wakeup_reset(struct trace_array *tr)
406 unsigned long flags;
408 tracing_reset_online_cpus(tr);
410 local_irq_save(flags);
411 arch_spin_lock(&wakeup_lock);
412 __wakeup_reset(tr);
413 arch_spin_unlock(&wakeup_lock);
414 local_irq_restore(flags);
417 static void
418 probe_wakeup(void *ignore, struct task_struct *p, int success)
420 struct trace_array_cpu *data;
421 int cpu = smp_processor_id();
422 unsigned long flags;
423 long disabled;
424 int pc;
426 if (likely(!tracer_enabled))
427 return;
429 tracing_record_cmdline(p);
430 tracing_record_cmdline(current);
432 if ((wakeup_rt && !rt_task(p)) ||
433 p->prio >= wakeup_prio ||
434 p->prio >= current->prio)
435 return;
437 pc = preempt_count();
438 disabled = atomic_inc_return(&wakeup_trace->data[cpu]->disabled);
439 if (unlikely(disabled != 1))
440 goto out;
442 /* interrupts should be off from try_to_wake_up */
443 arch_spin_lock(&wakeup_lock);
445 /* check for races. */
446 if (!tracer_enabled || p->prio >= wakeup_prio)
447 goto out_locked;
449 /* reset the trace */
450 __wakeup_reset(wakeup_trace);
452 wakeup_cpu = task_cpu(p);
453 wakeup_current_cpu = wakeup_cpu;
454 wakeup_prio = p->prio;
456 wakeup_task = p;
457 get_task_struct(wakeup_task);
459 local_save_flags(flags);
461 data = wakeup_trace->data[wakeup_cpu];
462 data->preempt_timestamp = ftrace_now(cpu);
463 tracing_sched_wakeup_trace(wakeup_trace, p, current, flags, pc);
466 * We must be careful in using CALLER_ADDR2. But since wake_up
467 * is not called by an assembly function (where as schedule is)
468 * it should be safe to use it here.
470 __trace_function(wakeup_trace, CALLER_ADDR1, CALLER_ADDR2, flags, pc);
472 out_locked:
473 arch_spin_unlock(&wakeup_lock);
474 out:
475 atomic_dec(&wakeup_trace->data[cpu]->disabled);
478 static void start_wakeup_tracer(struct trace_array *tr)
480 int ret;
482 ret = register_trace_sched_wakeup(probe_wakeup, NULL);
483 if (ret) {
484 pr_info("wakeup trace: Couldn't activate tracepoint"
485 " probe to kernel_sched_wakeup\n");
486 return;
489 ret = register_trace_sched_wakeup_new(probe_wakeup, NULL);
490 if (ret) {
491 pr_info("wakeup trace: Couldn't activate tracepoint"
492 " probe to kernel_sched_wakeup_new\n");
493 goto fail_deprobe;
496 ret = register_trace_sched_switch(probe_wakeup_sched_switch, NULL);
497 if (ret) {
498 pr_info("sched trace: Couldn't activate tracepoint"
499 " probe to kernel_sched_switch\n");
500 goto fail_deprobe_wake_new;
503 ret = register_trace_sched_migrate_task(probe_wakeup_migrate_task, NULL);
504 if (ret) {
505 pr_info("wakeup trace: Couldn't activate tracepoint"
506 " probe to kernel_sched_migrate_task\n");
507 return;
510 wakeup_reset(tr);
513 * Don't let the tracer_enabled = 1 show up before
514 * the wakeup_task is reset. This may be overkill since
515 * wakeup_reset does a spin_unlock after setting the
516 * wakeup_task to NULL, but I want to be safe.
517 * This is a slow path anyway.
519 smp_wmb();
521 if (start_func_tracer(is_graph()))
522 printk(KERN_ERR "failed to start wakeup tracer\n");
524 return;
525 fail_deprobe_wake_new:
526 unregister_trace_sched_wakeup_new(probe_wakeup, NULL);
527 fail_deprobe:
528 unregister_trace_sched_wakeup(probe_wakeup, NULL);
531 static void stop_wakeup_tracer(struct trace_array *tr)
533 tracer_enabled = 0;
534 stop_func_tracer(is_graph());
535 unregister_trace_sched_switch(probe_wakeup_sched_switch, NULL);
536 unregister_trace_sched_wakeup_new(probe_wakeup, NULL);
537 unregister_trace_sched_wakeup(probe_wakeup, NULL);
538 unregister_trace_sched_migrate_task(probe_wakeup_migrate_task, NULL);
541 static int __wakeup_tracer_init(struct trace_array *tr)
543 save_lat_flag = trace_flags & TRACE_ITER_LATENCY_FMT;
544 trace_flags |= TRACE_ITER_LATENCY_FMT;
546 tracing_max_latency = 0;
547 wakeup_trace = tr;
548 start_wakeup_tracer(tr);
549 return 0;
552 static int wakeup_tracer_init(struct trace_array *tr)
554 wakeup_rt = 0;
555 return __wakeup_tracer_init(tr);
558 static int wakeup_rt_tracer_init(struct trace_array *tr)
560 wakeup_rt = 1;
561 return __wakeup_tracer_init(tr);
564 static void wakeup_tracer_reset(struct trace_array *tr)
566 stop_wakeup_tracer(tr);
567 /* make sure we put back any tasks we are tracing */
568 wakeup_reset(tr);
570 if (!save_lat_flag)
571 trace_flags &= ~TRACE_ITER_LATENCY_FMT;
574 static void wakeup_tracer_start(struct trace_array *tr)
576 wakeup_reset(tr);
577 tracer_enabled = 1;
580 static void wakeup_tracer_stop(struct trace_array *tr)
582 tracer_enabled = 0;
585 static struct tracer wakeup_tracer __read_mostly =
587 .name = "wakeup",
588 .init = wakeup_tracer_init,
589 .reset = wakeup_tracer_reset,
590 .start = wakeup_tracer_start,
591 .stop = wakeup_tracer_stop,
592 .print_max = 1,
593 .print_header = wakeup_print_header,
594 .print_line = wakeup_print_line,
595 .flags = &tracer_flags,
596 .set_flag = wakeup_set_flag,
597 #ifdef CONFIG_FTRACE_SELFTEST
598 .selftest = trace_selftest_startup_wakeup,
599 #endif
600 .open = wakeup_trace_open,
601 .close = wakeup_trace_close,
602 .use_max_tr = 1,
605 static struct tracer wakeup_rt_tracer __read_mostly =
607 .name = "wakeup_rt",
608 .init = wakeup_rt_tracer_init,
609 .reset = wakeup_tracer_reset,
610 .start = wakeup_tracer_start,
611 .stop = wakeup_tracer_stop,
612 .wait_pipe = poll_wait_pipe,
613 .print_max = 1,
614 .print_header = wakeup_print_header,
615 .print_line = wakeup_print_line,
616 .flags = &tracer_flags,
617 .set_flag = wakeup_set_flag,
618 #ifdef CONFIG_FTRACE_SELFTEST
619 .selftest = trace_selftest_startup_wakeup,
620 #endif
621 .open = wakeup_trace_open,
622 .close = wakeup_trace_close,
623 .use_max_tr = 1,
626 __init static int init_wakeup_tracer(void)
628 int ret;
630 ret = register_tracer(&wakeup_tracer);
631 if (ret)
632 return ret;
634 ret = register_tracer(&wakeup_rt_tracer);
635 if (ret)
636 return ret;
638 return 0;
640 device_initcall(init_wakeup_tracer);