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>
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>
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;
31 static arch_spinlock_t wakeup_lock
=
32 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
34 static void __wakeup_reset(struct trace_array
*tr
);
36 static int save_lat_flag
;
38 #ifdef CONFIG_FUNCTION_TRACER
40 * irqsoff uses its own tracer function to keep the overhead down:
43 wakeup_tracer_call(unsigned long ip
, unsigned long parent_ip
)
45 struct trace_array
*tr
= wakeup_trace
;
46 struct trace_array_cpu
*data
;
52 if (likely(!wakeup_task
))
56 preempt_disable_notrace();
58 cpu
= raw_smp_processor_id();
59 if (cpu
!= wakeup_current_cpu
)
63 disabled
= atomic_inc_return(&data
->disabled
);
64 if (unlikely(disabled
!= 1))
67 local_irq_save(flags
);
69 trace_function(tr
, ip
, parent_ip
, flags
, pc
);
71 local_irq_restore(flags
);
74 atomic_dec(&data
->disabled
);
76 preempt_enable_notrace();
79 static struct ftrace_ops trace_ops __read_mostly
=
81 .func
= wakeup_tracer_call
,
83 #endif /* CONFIG_FUNCTION_TRACER */
86 * Should this new latency be reported/recorded?
88 static int report_latency(cycle_t delta
)
91 if (delta
< tracing_thresh
)
94 if (delta
<= tracing_max_latency
)
101 probe_wakeup_migrate_task(void *ignore
, struct task_struct
*task
, int cpu
)
103 if (task
!= wakeup_task
)
106 wakeup_current_cpu
= cpu
;
110 probe_wakeup_sched_switch(void *ignore
,
111 struct task_struct
*prev
, struct task_struct
*next
)
113 struct trace_array_cpu
*data
;
114 cycle_t T0
, T1
, delta
;
120 tracing_record_cmdline(prev
);
122 if (unlikely(!tracer_enabled
))
126 * When we start a new trace, we set wakeup_task to NULL
127 * and then set tracer_enabled = 1. We want to make sure
128 * that another CPU does not see the tracer_enabled = 1
129 * and the wakeup_task with an older task, that might
130 * actually be the same as next.
134 if (next
!= wakeup_task
)
137 pc
= preempt_count();
139 /* disable local data, not wakeup_cpu data */
140 cpu
= raw_smp_processor_id();
141 disabled
= atomic_inc_return(&wakeup_trace
->data
[cpu
]->disabled
);
142 if (likely(disabled
!= 1))
145 local_irq_save(flags
);
146 arch_spin_lock(&wakeup_lock
);
148 /* We could race with grabbing wakeup_lock */
149 if (unlikely(!tracer_enabled
|| next
!= wakeup_task
))
152 /* The task we are waiting for is waking up */
153 data
= wakeup_trace
->data
[wakeup_cpu
];
155 trace_function(wakeup_trace
, CALLER_ADDR0
, CALLER_ADDR1
, flags
, pc
);
156 tracing_sched_switch_trace(wakeup_trace
, prev
, next
, flags
, pc
);
158 T0
= data
->preempt_timestamp
;
159 T1
= ftrace_now(cpu
);
162 if (!report_latency(delta
))
165 if (likely(!is_tracing_stopped())) {
166 tracing_max_latency
= delta
;
167 update_max_tr(wakeup_trace
, wakeup_task
, wakeup_cpu
);
171 __wakeup_reset(wakeup_trace
);
172 arch_spin_unlock(&wakeup_lock
);
173 local_irq_restore(flags
);
175 atomic_dec(&wakeup_trace
->data
[cpu
]->disabled
);
178 static void __wakeup_reset(struct trace_array
*tr
)
184 put_task_struct(wakeup_task
);
189 static void wakeup_reset(struct trace_array
*tr
)
193 tracing_reset_online_cpus(tr
);
195 local_irq_save(flags
);
196 arch_spin_lock(&wakeup_lock
);
198 arch_spin_unlock(&wakeup_lock
);
199 local_irq_restore(flags
);
203 probe_wakeup(void *ignore
, struct task_struct
*p
, int success
)
205 struct trace_array_cpu
*data
;
206 int cpu
= smp_processor_id();
211 if (likely(!tracer_enabled
))
214 tracing_record_cmdline(p
);
215 tracing_record_cmdline(current
);
217 if ((wakeup_rt
&& !rt_task(p
)) ||
218 p
->prio
>= wakeup_prio
||
219 p
->prio
>= current
->prio
)
222 pc
= preempt_count();
223 disabled
= atomic_inc_return(&wakeup_trace
->data
[cpu
]->disabled
);
224 if (unlikely(disabled
!= 1))
227 /* interrupts should be off from try_to_wake_up */
228 arch_spin_lock(&wakeup_lock
);
230 /* check for races. */
231 if (!tracer_enabled
|| p
->prio
>= wakeup_prio
)
234 /* reset the trace */
235 __wakeup_reset(wakeup_trace
);
237 wakeup_cpu
= task_cpu(p
);
238 wakeup_current_cpu
= wakeup_cpu
;
239 wakeup_prio
= p
->prio
;
242 get_task_struct(wakeup_task
);
244 local_save_flags(flags
);
246 data
= wakeup_trace
->data
[wakeup_cpu
];
247 data
->preempt_timestamp
= ftrace_now(cpu
);
248 tracing_sched_wakeup_trace(wakeup_trace
, p
, current
, flags
, pc
);
251 * We must be careful in using CALLER_ADDR2. But since wake_up
252 * is not called by an assembly function (where as schedule is)
253 * it should be safe to use it here.
255 trace_function(wakeup_trace
, CALLER_ADDR1
, CALLER_ADDR2
, flags
, pc
);
258 arch_spin_unlock(&wakeup_lock
);
260 atomic_dec(&wakeup_trace
->data
[cpu
]->disabled
);
263 static void start_wakeup_tracer(struct trace_array
*tr
)
267 ret
= register_trace_sched_wakeup(probe_wakeup
, NULL
);
269 pr_info("wakeup trace: Couldn't activate tracepoint"
270 " probe to kernel_sched_wakeup\n");
274 ret
= register_trace_sched_wakeup_new(probe_wakeup
, NULL
);
276 pr_info("wakeup trace: Couldn't activate tracepoint"
277 " probe to kernel_sched_wakeup_new\n");
281 ret
= register_trace_sched_switch(probe_wakeup_sched_switch
, NULL
);
283 pr_info("sched trace: Couldn't activate tracepoint"
284 " probe to kernel_sched_switch\n");
285 goto fail_deprobe_wake_new
;
288 ret
= register_trace_sched_migrate_task(probe_wakeup_migrate_task
, NULL
);
290 pr_info("wakeup trace: Couldn't activate tracepoint"
291 " probe to kernel_sched_migrate_task\n");
298 * Don't let the tracer_enabled = 1 show up before
299 * the wakeup_task is reset. This may be overkill since
300 * wakeup_reset does a spin_unlock after setting the
301 * wakeup_task to NULL, but I want to be safe.
302 * This is a slow path anyway.
306 register_ftrace_function(&trace_ops
);
308 if (tracing_is_enabled())
314 fail_deprobe_wake_new
:
315 unregister_trace_sched_wakeup_new(probe_wakeup
, NULL
);
317 unregister_trace_sched_wakeup(probe_wakeup
, NULL
);
320 static void stop_wakeup_tracer(struct trace_array
*tr
)
323 unregister_ftrace_function(&trace_ops
);
324 unregister_trace_sched_switch(probe_wakeup_sched_switch
, NULL
);
325 unregister_trace_sched_wakeup_new(probe_wakeup
, NULL
);
326 unregister_trace_sched_wakeup(probe_wakeup
, NULL
);
327 unregister_trace_sched_migrate_task(probe_wakeup_migrate_task
, NULL
);
330 static int __wakeup_tracer_init(struct trace_array
*tr
)
332 save_lat_flag
= trace_flags
& TRACE_ITER_LATENCY_FMT
;
333 trace_flags
|= TRACE_ITER_LATENCY_FMT
;
335 tracing_max_latency
= 0;
337 start_wakeup_tracer(tr
);
341 static int wakeup_tracer_init(struct trace_array
*tr
)
344 return __wakeup_tracer_init(tr
);
347 static int wakeup_rt_tracer_init(struct trace_array
*tr
)
350 return __wakeup_tracer_init(tr
);
353 static void wakeup_tracer_reset(struct trace_array
*tr
)
355 stop_wakeup_tracer(tr
);
356 /* make sure we put back any tasks we are tracing */
360 trace_flags
&= ~TRACE_ITER_LATENCY_FMT
;
363 static void wakeup_tracer_start(struct trace_array
*tr
)
369 static void wakeup_tracer_stop(struct trace_array
*tr
)
374 static struct tracer wakeup_tracer __read_mostly
=
377 .init
= wakeup_tracer_init
,
378 .reset
= wakeup_tracer_reset
,
379 .start
= wakeup_tracer_start
,
380 .stop
= wakeup_tracer_stop
,
382 #ifdef CONFIG_FTRACE_SELFTEST
383 .selftest
= trace_selftest_startup_wakeup
,
388 static struct tracer wakeup_rt_tracer __read_mostly
=
391 .init
= wakeup_rt_tracer_init
,
392 .reset
= wakeup_tracer_reset
,
393 .start
= wakeup_tracer_start
,
394 .stop
= wakeup_tracer_stop
,
395 .wait_pipe
= poll_wait_pipe
,
397 #ifdef CONFIG_FTRACE_SELFTEST
398 .selftest
= trace_selftest_startup_wakeup
,
403 __init
static int init_wakeup_tracer(void)
407 ret
= register_tracer(&wakeup_tracer
);
411 ret
= register_tracer(&wakeup_rt_tracer
);
417 device_initcall(init_wakeup_tracer
);