trace: Remove unused trace_array_cpu parameter
[safe/jmp/linux-2.6] / kernel / trace / trace_sched_wakeup.c
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>
18 #include <trace/sched.h>
19
20 #include "trace.h"
21
22 static struct trace_array       *wakeup_trace;
23 static int __read_mostly        tracer_enabled;
24
25 static struct task_struct       *wakeup_task;
26 static int                      wakeup_cpu;
27 static unsigned                 wakeup_prio = -1;
28 static int                      wakeup_rt;
29
30 static raw_spinlock_t wakeup_lock =
31         (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
32
33 static void __wakeup_reset(struct trace_array *tr);
34
35 #ifdef CONFIG_FUNCTION_TRACER
36 /*
37  * irqsoff uses its own tracer function to keep the overhead down:
38  */
39 static void
40 wakeup_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;
48         int pc;
49
50         if (likely(!wakeup_task))
51                 return;
52
53         pc = preempt_count();
54         resched = ftrace_preempt_disable();
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
62         local_irq_save(flags);
63         __raw_spin_lock(&wakeup_lock);
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
75         trace_function(tr, ip, parent_ip, flags, pc);
76
77  unlock:
78         __raw_spin_unlock(&wakeup_lock);
79         local_irq_restore(flags);
80
81  out:
82         atomic_dec(&data->disabled);
83
84         ftrace_preempt_enable(resched);
85 }
86
87 static struct ftrace_ops trace_ops __read_mostly =
88 {
89         .func = wakeup_tracer_call,
90 };
91 #endif /* CONFIG_FUNCTION_TRACER */
92
93 /*
94  * Should this new latency be reported/recorded?
95  */
96 static int report_latency(cycle_t delta)
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
108 static void notrace
109 probe_wakeup_sched_switch(struct rq *rq, struct task_struct *prev,
110         struct task_struct *next)
111 {
112         unsigned long latency = 0, t0 = 0, t1 = 0;
113         struct trace_array_cpu *data;
114         cycle_t T0, T1, delta;
115         unsigned long flags;
116         long disabled;
117         int cpu;
118         int pc;
119
120         tracing_record_cmdline(prev);
121
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
137         pc = preempt_count();
138
139         /* The task we are waiting for is waking up */
140         data = wakeup_trace->data[wakeup_cpu];
141
142         /* disable local data, not wakeup_cpu data */
143         cpu = raw_smp_processor_id();
144         disabled = atomic_inc_return(&wakeup_trace->data[cpu]->disabled);
145         if (likely(disabled != 1))
146                 goto out;
147
148         local_irq_save(flags);
149         __raw_spin_lock(&wakeup_lock);
150
151         /* We could race with grabbing wakeup_lock */
152         if (unlikely(!tracer_enabled || next != wakeup_task))
153                 goto out_unlock;
154
155         trace_function(wakeup_trace, CALLER_ADDR1, CALLER_ADDR2, flags, pc);
156         tracing_sched_switch_trace(wakeup_trace, prev, next, flags, pc);
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;
163         T1 = ftrace_now(cpu);
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
175         update_max_tr(wakeup_trace, wakeup_task, wakeup_cpu);
176
177 out_unlock:
178         __wakeup_reset(wakeup_trace);
179         __raw_spin_unlock(&wakeup_lock);
180         local_irq_restore(flags);
181 out:
182         atomic_dec(&wakeup_trace->data[cpu]->disabled);
183 }
184
185 static void __wakeup_reset(struct trace_array *tr)
186 {
187         int cpu;
188
189         for_each_possible_cpu(cpu)
190                 tracing_reset(tr, cpu);
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
201 static void wakeup_reset(struct trace_array *tr)
202 {
203         unsigned long flags;
204
205         local_irq_save(flags);
206         __raw_spin_lock(&wakeup_lock);
207         __wakeup_reset(tr);
208         __raw_spin_unlock(&wakeup_lock);
209         local_irq_restore(flags);
210 }
211
212 static void
213 probe_wakeup(struct rq *rq, struct task_struct *p, int success)
214 {
215         struct trace_array_cpu *data;
216         int cpu = smp_processor_id();
217         unsigned long flags;
218         long disabled;
219         int pc;
220
221         if (likely(!tracer_enabled))
222                 return;
223
224         tracing_record_cmdline(p);
225         tracing_record_cmdline(current);
226
227         if ((wakeup_rt && !rt_task(p)) ||
228                         p->prio >= wakeup_prio ||
229                         p->prio >= current->prio)
230                 return;
231
232         pc = preempt_count();
233         disabled = atomic_inc_return(&wakeup_trace->data[cpu]->disabled);
234         if (unlikely(disabled != 1))
235                 goto out;
236
237         /* interrupts should be off from try_to_wake_up */
238         __raw_spin_lock(&wakeup_lock);
239
240         /* check for races. */
241         if (!tracer_enabled || p->prio >= wakeup_prio)
242                 goto out_locked;
243
244         /* reset the trace */
245         __wakeup_reset(wakeup_trace);
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
255         data = wakeup_trace->data[wakeup_cpu];
256         data->preempt_timestamp = ftrace_now(cpu);
257         tracing_sched_wakeup_trace(wakeup_trace, p, current, flags, pc);
258         trace_function(wakeup_trace, CALLER_ADDR1, CALLER_ADDR2, flags, pc);
259
260 out_locked:
261         __raw_spin_unlock(&wakeup_lock);
262 out:
263         atomic_dec(&wakeup_trace->data[cpu]->disabled);
264 }
265
266 static void start_wakeup_tracer(struct trace_array *tr)
267 {
268         int ret;
269
270         ret = register_trace_sched_wakeup(probe_wakeup);
271         if (ret) {
272                 pr_info("wakeup trace: Couldn't activate tracepoint"
273                         " probe to kernel_sched_wakeup\n");
274                 return;
275         }
276
277         ret = register_trace_sched_wakeup_new(probe_wakeup);
278         if (ret) {
279                 pr_info("wakeup trace: Couldn't activate tracepoint"
280                         " probe to kernel_sched_wakeup_new\n");
281                 goto fail_deprobe;
282         }
283
284         ret = register_trace_sched_switch(probe_wakeup_sched_switch);
285         if (ret) {
286                 pr_info("sched trace: Couldn't activate tracepoint"
287                         " probe to kernel_sched_schedule\n");
288                 goto fail_deprobe_wake_new;
289         }
290
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
302         register_ftrace_function(&trace_ops);
303
304         if (tracing_is_enabled())
305                 tracer_enabled = 1;
306         else
307                 tracer_enabled = 0;
308
309         return;
310 fail_deprobe_wake_new:
311         unregister_trace_sched_wakeup_new(probe_wakeup);
312 fail_deprobe:
313         unregister_trace_sched_wakeup(probe_wakeup);
314 }
315
316 static void stop_wakeup_tracer(struct trace_array *tr)
317 {
318         tracer_enabled = 0;
319         unregister_ftrace_function(&trace_ops);
320         unregister_trace_sched_switch(probe_wakeup_sched_switch);
321         unregister_trace_sched_wakeup_new(probe_wakeup);
322         unregister_trace_sched_wakeup(probe_wakeup);
323 }
324
325 static int __wakeup_tracer_init(struct trace_array *tr)
326 {
327         tracing_max_latency = 0;
328         wakeup_trace = tr;
329         start_wakeup_tracer(tr);
330         return 0;
331 }
332
333 static int wakeup_tracer_init(struct trace_array *tr)
334 {
335         wakeup_rt = 0;
336         return __wakeup_tracer_init(tr);
337 }
338
339 static int wakeup_rt_tracer_init(struct trace_array *tr)
340 {
341         wakeup_rt = 1;
342         return __wakeup_tracer_init(tr);
343 }
344
345 static void wakeup_tracer_reset(struct trace_array *tr)
346 {
347         stop_wakeup_tracer(tr);
348         /* make sure we put back any tasks we are tracing */
349         wakeup_reset(tr);
350 }
351
352 static void wakeup_tracer_start(struct trace_array *tr)
353 {
354         wakeup_reset(tr);
355         tracer_enabled = 1;
356 }
357
358 static void wakeup_tracer_stop(struct trace_array *tr)
359 {
360         tracer_enabled = 0;
361 }
362
363 static struct tracer wakeup_tracer __read_mostly =
364 {
365         .name           = "wakeup",
366         .init           = wakeup_tracer_init,
367         .reset          = wakeup_tracer_reset,
368         .start          = wakeup_tracer_start,
369         .stop           = wakeup_tracer_stop,
370         .print_max      = 1,
371 #ifdef CONFIG_FTRACE_SELFTEST
372         .selftest    = trace_selftest_startup_wakeup,
373 #endif
374 };
375
376 static 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,
383         .print_max      = 1,
384 #ifdef CONFIG_FTRACE_SELFTEST
385         .selftest    = trace_selftest_startup_wakeup,
386 #endif
387 };
388
389 __init static int init_wakeup_tracer(void)
390 {
391         int ret;
392
393         ret = register_tracer(&wakeup_tracer);
394         if (ret)
395                 return ret;
396
397         ret = register_tracer(&wakeup_rt_tracer);
398         if (ret)
399                 return ret;
400
401         return 0;
402 }
403 device_initcall(init_wakeup_tracer);