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