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