blob: 5e43b9664ecabb366dc8e81faa4d09d962084baa [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Steven Rostedt352ad252008-05-12 21:20:42 +02002/*
3 * trace task wakeup timings
4 *
5 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
6 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
7 *
8 * Based on code from the latency_tracer, that is:
9 *
10 * Copyright (C) 2004-2006 Ingo Molnar
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +010011 * Copyright (C) 2004 Nadia Yvette Chambers
Steven Rostedt352ad252008-05-12 21:20:42 +020012 */
13#include <linux/module.h>
Steven Rostedt352ad252008-05-12 21:20:42 +020014#include <linux/kallsyms.h>
15#include <linux/uaccess.h>
16#include <linux/ftrace.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060017#include <linux/sched/rt.h>
Dario Faggioli2d3d8912013-11-07 14:43:44 +010018#include <linux/sched/deadline.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040019#include <trace/events/sched.h>
Steven Rostedt352ad252008-05-12 21:20:42 +020020#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;
Steven Rostedt478142c32009-09-09 10:36:01 -040027static int wakeup_current_cpu;
Steven Rostedt352ad252008-05-12 21:20:42 +020028static unsigned wakeup_prio = -1;
Steven Rostedt32443512009-01-21 16:24:46 -050029static int wakeup_rt;
Dario Faggioliaf6ace72013-11-07 14:43:42 +010030static int wakeup_dl;
31static int tracing_dl = 0;
Steven Rostedt352ad252008-05-12 21:20:42 +020032
Thomas Gleixner445c8952009-12-02 19:49:50 +010033static arch_spinlock_t wakeup_lock =
Thomas Gleixneredc35bd2009-12-03 12:38:57 +010034 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Steven Rostedt352ad252008-05-12 21:20:42 +020035
Jiri Olsa7495a5b2010-09-23 14:00:53 +020036static void wakeup_reset(struct trace_array *tr);
Ingo Molnare309b412008-05-12 21:20:51 +020037static void __wakeup_reset(struct trace_array *tr);
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -050038static int start_func_tracer(struct trace_array *tr, int graph);
39static void stop_func_tracer(struct trace_array *tr, int graph);
Steven Rostedt352ad252008-05-12 21:20:42 +020040
Steven Rostedt (Red Hat)613f04a2013-03-14 15:03:53 -040041static int save_flags;
Steven Rostedte9d25fe2009-03-04 22:15:30 -050042
Jiri Olsa7495a5b2010-09-23 14:00:53 +020043#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -040044# define is_graph(tr) ((tr)->trace_flags & TRACE_ITER_DISPLAY_GRAPH)
Steven Rostedt (Red Hat)03905582015-09-28 15:37:49 -040045#else
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -040046# define is_graph(tr) false
Jiri Olsa7495a5b2010-09-23 14:00:53 +020047#endif
Jiri Olsa7495a5b2010-09-23 14:00:53 +020048
Steven Rostedt606576c2008-10-06 19:06:12 -040049#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedt542181d2010-10-05 16:38:49 -040050
Steven Rostedt352ad252008-05-12 21:20:42 +020051static bool function_enabled;
52
Steven Rostedt542181d2010-10-05 16:38:49 -040053/*
54 * Prologue for the wakeup function tracers.
55 *
56 * Returns 1 if it is OK to continue, and preemption
57 * is disabled and data->disabled is incremented.
58 * 0 if the trace is to be ignored, and preemption
59 * is not disabled and data->disabled is
60 * kept the same.
61 *
62 * Note, this function is also used outside this ifdef but
63 * inside the #ifdef of the function graph tracer below.
64 * This is OK, since the function graph tracer is
65 * dependent on the function tracer.
66 */
67static int
68func_prolog_preempt_disable(struct trace_array *tr,
69 struct trace_array_cpu **data,
70 int *pc)
71{
72 long disabled;
73 int cpu;
74
75 if (likely(!wakeup_task))
76 return 0;
77
78 *pc = preempt_count();
79 preempt_disable_notrace();
80
81 cpu = raw_smp_processor_id();
82 if (cpu != wakeup_current_cpu)
83 goto out_enable;
84
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -050085 *data = per_cpu_ptr(tr->trace_buffer.data, cpu);
Steven Rostedt542181d2010-10-05 16:38:49 -040086 disabled = atomic_inc_return(&(*data)->disabled);
87 if (unlikely(disabled != 1))
88 goto out;
89
90 return 1;
91
92out:
93 atomic_dec(&(*data)->disabled);
94
95out_enable:
96 preempt_enable_notrace();
97 return 0;
98}
99
Steven Rostedt (Red Hat)729358d2015-09-29 10:15:10 -0400100#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt (Red Hat)328df472013-03-14 12:10:40 -0400101
Steven Rostedt (Red Hat)03905582015-09-28 15:37:49 -0400102static int wakeup_display_graph(struct trace_array *tr, int set)
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200103{
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400104 if (!(is_graph(tr) ^ set))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200105 return 0;
106
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500107 stop_func_tracer(tr, !set);
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200108
109 wakeup_reset(wakeup_trace);
Steven Rostedt (Red Hat)6d9b3fa2014-01-14 11:28:38 -0500110 tr->max_latency = 0;
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200111
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500112 return start_func_tracer(tr, set);
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200113}
114
115static int wakeup_graph_entry(struct ftrace_graph_ent *trace)
116{
117 struct trace_array *tr = wakeup_trace;
118 struct trace_array_cpu *data;
119 unsigned long flags;
Steven Rostedt542181d2010-10-05 16:38:49 -0400120 int pc, ret = 0;
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200121
Steven Rostedt (Red Hat)1a414422016-12-08 19:28:28 -0500122 if (ftrace_graph_ignore_func(trace))
123 return 0;
124 /*
125 * Do not trace a function if it's filtered by set_graph_notrace.
126 * Make the index of ret stack negative to indicate that it should
127 * ignore further functions. But it needs its own ret stack entry
128 * to recover the original index in order to continue tracing after
129 * returning from the function.
130 */
131 if (ftrace_graph_notrace_addr(trace->func))
132 return 1;
133
Steven Rostedt542181d2010-10-05 16:38:49 -0400134 if (!func_prolog_preempt_disable(tr, &data, &pc))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200135 return 0;
136
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200137 local_save_flags(flags);
138 ret = __trace_graph_entry(tr, trace, flags, pc);
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200139 atomic_dec(&data->disabled);
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200140 preempt_enable_notrace();
Steven Rostedt542181d2010-10-05 16:38:49 -0400141
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200142 return ret;
143}
144
145static void wakeup_graph_return(struct ftrace_graph_ret *trace)
146{
147 struct trace_array *tr = wakeup_trace;
148 struct trace_array_cpu *data;
149 unsigned long flags;
Steven Rostedt542181d2010-10-05 16:38:49 -0400150 int pc;
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200151
Steven Rostedt (VMware)5cf99a0f2018-11-29 08:50:27 -0500152 ftrace_graph_addr_finish(trace);
153
Steven Rostedt542181d2010-10-05 16:38:49 -0400154 if (!func_prolog_preempt_disable(tr, &data, &pc))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200155 return;
156
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200157 local_save_flags(flags);
158 __trace_graph_return(tr, trace, flags, pc);
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200159 atomic_dec(&data->disabled);
160
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200161 preempt_enable_notrace();
162 return;
163}
164
Steven Rostedt (VMware)688f7082018-11-15 14:06:47 -0500165static struct fgraph_ops fgraph_wakeup_ops = {
166 .entryfunc = &wakeup_graph_entry,
167 .retfunc = &wakeup_graph_return,
168};
169
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200170static void wakeup_trace_open(struct trace_iterator *iter)
171{
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400172 if (is_graph(iter->tr))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200173 graph_trace_open(iter);
174}
175
176static void wakeup_trace_close(struct trace_iterator *iter)
177{
178 if (iter->private)
179 graph_trace_close(iter);
180}
181
Jiri Olsa321e68b2011-06-03 16:58:47 +0200182#define GRAPH_TRACER_FLAGS (TRACE_GRAPH_PRINT_PROC | \
Changbin Du97f0a3b2019-01-01 23:46:11 +0800183 TRACE_GRAPH_PRINT_CPU | \
Changbin Du9acd8de2019-01-01 23:46:10 +0800184 TRACE_GRAPH_PRINT_REL_TIME | \
Changbin Du97f0a3b2019-01-01 23:46:11 +0800185 TRACE_GRAPH_PRINT_DURATION | \
186 TRACE_GRAPH_PRINT_OVERHEAD | \
187 TRACE_GRAPH_PRINT_IRQS)
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200188
189static enum print_line_t wakeup_print_line(struct trace_iterator *iter)
190{
191 /*
192 * In graph mode call the graph tracer output function,
193 * otherwise go with the TRACE_FN event handler
194 */
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400195 if (is_graph(iter->tr))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200196 return print_graph_function_flags(iter, GRAPH_TRACER_FLAGS);
197
198 return TRACE_TYPE_UNHANDLED;
199}
200
201static void wakeup_print_header(struct seq_file *s)
202{
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400203 if (is_graph(wakeup_trace))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200204 print_graph_headers_flags(s, GRAPH_TRACER_FLAGS);
205 else
206 trace_default_header(s);
207}
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500208#endif /* else CONFIG_FUNCTION_GRAPH_TRACER */
209
210/*
211 * wakeup uses its own tracer function to keep the overhead down:
212 */
213static void
214wakeup_tracer_call(unsigned long ip, unsigned long parent_ip,
215 struct ftrace_ops *op, struct pt_regs *pt_regs)
216{
217 struct trace_array *tr = wakeup_trace;
218 struct trace_array_cpu *data;
219 unsigned long flags;
220 int pc;
221
222 if (!func_prolog_preempt_disable(tr, &data, &pc))
223 return;
224
225 local_irq_save(flags);
226 trace_function(tr, ip, parent_ip, flags, pc);
227 local_irq_restore(flags);
228
229 atomic_dec(&data->disabled);
230 preempt_enable_notrace();
231}
232
233static int register_wakeup_function(struct trace_array *tr, int graph, int set)
234{
235 int ret;
236
237 /* 'set' is set if TRACE_ITER_FUNCTION is about to be set */
238 if (function_enabled || (!set && !(tr->trace_flags & TRACE_ITER_FUNCTION)))
239 return 0;
240
241 if (graph)
Steven Rostedt (VMware)688f7082018-11-15 14:06:47 -0500242 ret = register_ftrace_graph(&fgraph_wakeup_ops);
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500243 else
244 ret = register_ftrace_function(tr->ops);
245
246 if (!ret)
247 function_enabled = true;
248
249 return ret;
250}
251
252static void unregister_wakeup_function(struct trace_array *tr, int graph)
253{
254 if (!function_enabled)
255 return;
256
257 if (graph)
Steven Rostedt (VMware)688f7082018-11-15 14:06:47 -0500258 unregister_ftrace_graph(&fgraph_wakeup_ops);
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500259 else
260 unregister_ftrace_function(tr->ops);
261
262 function_enabled = false;
263}
264
265static int wakeup_function_set(struct trace_array *tr, u32 mask, int set)
266{
267 if (!(mask & TRACE_ITER_FUNCTION))
268 return 0;
269
270 if (set)
271 register_wakeup_function(tr, is_graph(tr), 1);
272 else
273 unregister_wakeup_function(tr, is_graph(tr));
274 return 1;
275}
276#else /* CONFIG_FUNCTION_TRACER */
277static int register_wakeup_function(struct trace_array *tr, int graph, int set)
278{
279 return 0;
280}
281static void unregister_wakeup_function(struct trace_array *tr, int graph) { }
282static int wakeup_function_set(struct trace_array *tr, u32 mask, int set)
283{
284 return 0;
285}
286#endif /* else CONFIG_FUNCTION_TRACER */
287
288#ifndef CONFIG_FUNCTION_GRAPH_TRACER
289static enum print_line_t wakeup_print_line(struct trace_iterator *iter)
290{
291 return TRACE_TYPE_UNHANDLED;
292}
293
294static void wakeup_trace_open(struct trace_iterator *iter) { }
295static void wakeup_trace_close(struct trace_iterator *iter) { }
296
297static void wakeup_print_header(struct seq_file *s)
298{
299 trace_default_header(s);
300}
301#endif /* !CONFIG_FUNCTION_GRAPH_TRACER */
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200302
303static void
304__trace_function(struct trace_array *tr,
305 unsigned long ip, unsigned long parent_ip,
306 unsigned long flags, int pc)
307{
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400308 if (is_graph(tr))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200309 trace_graph_function(tr, ip, parent_ip, flags, pc);
310 else
311 trace_function(tr, ip, parent_ip, flags, pc);
312}
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200313
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500314static int wakeup_flag_changed(struct trace_array *tr, u32 mask, int set)
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200315{
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500316 struct tracer *tracer = tr->current_trace;
317
318 if (wakeup_function_set(tr, mask, set))
319 return 0;
320
321#ifdef CONFIG_FUNCTION_GRAPH_TRACER
322 if (mask & TRACE_ITER_DISPLAY_GRAPH)
323 return wakeup_display_graph(tr, set);
324#endif
325
326 return trace_keep_overwrite(tracer, mask, set);
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200327}
328
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500329static int start_func_tracer(struct trace_array *tr, int graph)
330{
331 int ret;
Jiri Olsa7e9a49e2011-11-07 16:08:49 +0100332
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500333 ret = register_wakeup_function(tr, graph, 0);
334
335 if (!ret && tracing_is_enabled())
336 tracer_enabled = 1;
337 else
338 tracer_enabled = 0;
339
340 return ret;
Steven Rostedt (Red Hat)8179e8a2015-09-29 10:24:56 -0400341}
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500342
343static void stop_func_tracer(struct trace_array *tr, int graph)
Jiri Olsa7e9a49e2011-11-07 16:08:49 +0100344{
Steven Rostedt (VMware)317e04ca2018-11-28 10:26:27 -0500345 tracer_enabled = 0;
346
347 unregister_wakeup_function(tr, graph);
Jiri Olsa7e9a49e2011-11-07 16:08:49 +0100348}
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200349
Steven Rostedt352ad252008-05-12 21:20:42 +0200350/*
351 * Should this new latency be reported/recorded?
352 */
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100353static bool report_latency(struct trace_array *tr, u64 delta)
Steven Rostedt352ad252008-05-12 21:20:42 +0200354{
355 if (tracing_thresh) {
356 if (delta < tracing_thresh)
Yaowei Bai26ab2ef2015-09-29 22:43:29 +0800357 return false;
Steven Rostedt352ad252008-05-12 21:20:42 +0200358 } else {
Steven Rostedt (Red Hat)6d9b3fa2014-01-14 11:28:38 -0500359 if (delta <= tr->max_latency)
Yaowei Bai26ab2ef2015-09-29 22:43:29 +0800360 return false;
Steven Rostedt352ad252008-05-12 21:20:42 +0200361 }
Yaowei Bai26ab2ef2015-09-29 22:43:29 +0800362 return true;
Steven Rostedt352ad252008-05-12 21:20:42 +0200363}
364
Steven Rostedt38516ab2010-04-20 17:04:50 -0400365static void
366probe_wakeup_migrate_task(void *ignore, struct task_struct *task, int cpu)
Steven Rostedt478142c32009-09-09 10:36:01 -0400367{
368 if (task != wakeup_task)
369 return;
370
371 wakeup_current_cpu = cpu;
372}
373
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400374static void
375tracing_sched_switch_trace(struct trace_array *tr,
376 struct task_struct *prev,
377 struct task_struct *next,
378 unsigned long flags, int pc)
379{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400380 struct trace_event_call *call = &event_context_switch;
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400381 struct ring_buffer *buffer = tr->trace_buffer.buffer;
382 struct ring_buffer_event *event;
383 struct ctx_switch_entry *entry;
384
385 event = trace_buffer_lock_reserve(buffer, TRACE_CTX,
386 sizeof(*entry), flags, pc);
387 if (!event)
388 return;
389 entry = ring_buffer_event_data(event);
390 entry->prev_pid = prev->pid;
391 entry->prev_prio = prev->prio;
Peter Zijlstra1d48b082017-09-29 13:50:16 +0200392 entry->prev_state = task_state_index(prev);
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400393 entry->next_pid = next->pid;
394 entry->next_prio = next->prio;
Peter Zijlstra1d48b082017-09-29 13:50:16 +0200395 entry->next_state = task_state_index(next);
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400396 entry->next_cpu = task_cpu(next);
397
398 if (!call_filter_check_discard(call, entry, buffer, event))
Steven Rostedt (Red Hat)b7f0c952015-09-25 17:38:44 -0400399 trace_buffer_unlock_commit(tr, buffer, event, flags, pc);
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400400}
401
402static void
403tracing_sched_wakeup_trace(struct trace_array *tr,
404 struct task_struct *wakee,
405 struct task_struct *curr,
406 unsigned long flags, int pc)
407{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400408 struct trace_event_call *call = &event_wakeup;
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400409 struct ring_buffer_event *event;
410 struct ctx_switch_entry *entry;
411 struct ring_buffer *buffer = tr->trace_buffer.buffer;
412
413 event = trace_buffer_lock_reserve(buffer, TRACE_WAKE,
414 sizeof(*entry), flags, pc);
415 if (!event)
416 return;
417 entry = ring_buffer_event_data(event);
418 entry->prev_pid = curr->pid;
419 entry->prev_prio = curr->prio;
Peter Zijlstra1d48b082017-09-29 13:50:16 +0200420 entry->prev_state = task_state_index(curr);
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400421 entry->next_pid = wakee->pid;
422 entry->next_prio = wakee->prio;
Peter Zijlstra1d48b082017-09-29 13:50:16 +0200423 entry->next_state = task_state_index(wakee);
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400424 entry->next_cpu = task_cpu(wakee);
425
426 if (!call_filter_check_discard(call, entry, buffer, event))
Steven Rostedt (Red Hat)b7f0c952015-09-25 17:38:44 -0400427 trace_buffer_unlock_commit(tr, buffer, event, flags, pc);
Steven Rostedt (Red Hat)243f7612014-10-30 20:44:53 -0400428}
429
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200430static void notrace
Peter Zijlstrac73464b2015-09-28 18:06:56 +0200431probe_wakeup_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -0400432 struct task_struct *prev, struct task_struct *next)
Steven Rostedt352ad252008-05-12 21:20:42 +0200433{
Steven Rostedt352ad252008-05-12 21:20:42 +0200434 struct trace_array_cpu *data;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100435 u64 T0, T1, delta;
Steven Rostedt352ad252008-05-12 21:20:42 +0200436 unsigned long flags;
437 long disabled;
438 int cpu;
Steven Rostedt38697052008-10-01 13:14:09 -0400439 int pc;
Steven Rostedt352ad252008-05-12 21:20:42 +0200440
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400441 tracing_record_cmdline(prev);
442
Steven Rostedt352ad252008-05-12 21:20:42 +0200443 if (unlikely(!tracer_enabled))
444 return;
445
446 /*
447 * When we start a new trace, we set wakeup_task to NULL
448 * and then set tracer_enabled = 1. We want to make sure
449 * that another CPU does not see the tracer_enabled = 1
450 * and the wakeup_task with an older task, that might
451 * actually be the same as next.
452 */
453 smp_rmb();
454
455 if (next != wakeup_task)
456 return;
457
Steven Rostedt38697052008-10-01 13:14:09 -0400458 pc = preempt_count();
459
Steven Rostedt352ad252008-05-12 21:20:42 +0200460 /* disable local data, not wakeup_cpu data */
461 cpu = raw_smp_processor_id();
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500462 disabled = atomic_inc_return(&per_cpu_ptr(wakeup_trace->trace_buffer.data, cpu)->disabled);
Steven Rostedt352ad252008-05-12 21:20:42 +0200463 if (likely(disabled != 1))
464 goto out;
465
Steven Rostedte59494f2008-07-16 00:13:45 -0400466 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100467 arch_spin_lock(&wakeup_lock);
Steven Rostedt352ad252008-05-12 21:20:42 +0200468
469 /* We could race with grabbing wakeup_lock */
470 if (unlikely(!tracer_enabled || next != wakeup_task))
471 goto out_unlock;
472
Steven Rostedt9be24412009-03-26 10:25:24 -0400473 /* The task we are waiting for is waking up */
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500474 data = per_cpu_ptr(wakeup_trace->trace_buffer.data, wakeup_cpu);
Steven Rostedt9be24412009-03-26 10:25:24 -0400475
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200476 __trace_function(wakeup_trace, CALLER_ADDR0, CALLER_ADDR1, flags, pc);
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -0500477 tracing_sched_switch_trace(wakeup_trace, prev, next, flags, pc);
Changbin Duf52d5692019-01-17 00:02:49 +0800478 __trace_stack(wakeup_trace, flags, 0, pc);
Steven Rostedt352ad252008-05-12 21:20:42 +0200479
Steven Rostedt352ad252008-05-12 21:20:42 +0200480 T0 = data->preempt_timestamp;
Ingo Molnar750ed1a2008-05-12 21:20:46 +0200481 T1 = ftrace_now(cpu);
Steven Rostedt352ad252008-05-12 21:20:42 +0200482 delta = T1-T0;
483
Steven Rostedt (Red Hat)6d9b3fa2014-01-14 11:28:38 -0500484 if (!report_latency(wakeup_trace, delta))
Steven Rostedt352ad252008-05-12 21:20:42 +0200485 goto out_unlock;
486
Carsten Emdeb5130b12009-09-13 01:43:07 +0200487 if (likely(!is_tracing_stopped())) {
Steven Rostedt (Red Hat)6d9b3fa2014-01-14 11:28:38 -0500488 wakeup_trace->max_latency = delta;
Tom Zanussia35873a2019-02-13 17:42:45 -0600489 update_max_tr(wakeup_trace, wakeup_task, wakeup_cpu, NULL);
Carsten Emdeb5130b12009-09-13 01:43:07 +0200490 }
Steven Rostedt352ad252008-05-12 21:20:42 +0200491
Steven Rostedt352ad252008-05-12 21:20:42 +0200492out_unlock:
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400493 __wakeup_reset(wakeup_trace);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100494 arch_spin_unlock(&wakeup_lock);
Steven Rostedte59494f2008-07-16 00:13:45 -0400495 local_irq_restore(flags);
Steven Rostedt352ad252008-05-12 21:20:42 +0200496out:
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500497 atomic_dec(&per_cpu_ptr(wakeup_trace->trace_buffer.data, cpu)->disabled);
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200498}
499
Ingo Molnare309b412008-05-12 21:20:51 +0200500static void __wakeup_reset(struct trace_array *tr)
Steven Rostedt352ad252008-05-12 21:20:42 +0200501{
Steven Rostedt352ad252008-05-12 21:20:42 +0200502 wakeup_cpu = -1;
503 wakeup_prio = -1;
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100504 tracing_dl = 0;
Steven Rostedt352ad252008-05-12 21:20:42 +0200505
506 if (wakeup_task)
507 put_task_struct(wakeup_task);
508
509 wakeup_task = NULL;
510}
511
Ingo Molnare309b412008-05-12 21:20:51 +0200512static void wakeup_reset(struct trace_array *tr)
Steven Rostedt352ad252008-05-12 21:20:42 +0200513{
514 unsigned long flags;
515
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500516 tracing_reset_online_cpus(&tr->trace_buffer);
Steven Rostedt2f26ebd2009-09-01 11:06:29 -0400517
Steven Rostedte59494f2008-07-16 00:13:45 -0400518 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100519 arch_spin_lock(&wakeup_lock);
Steven Rostedt352ad252008-05-12 21:20:42 +0200520 __wakeup_reset(tr);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100521 arch_spin_unlock(&wakeup_lock);
Steven Rostedte59494f2008-07-16 00:13:45 -0400522 local_irq_restore(flags);
Steven Rostedt352ad252008-05-12 21:20:42 +0200523}
524
Ingo Molnare309b412008-05-12 21:20:51 +0200525static void
Peter Zijlstrafbd705a2015-06-09 11:13:36 +0200526probe_wakeup(void *ignore, struct task_struct *p)
Steven Rostedt352ad252008-05-12 21:20:42 +0200527{
Steven Rostedtf8ec1062009-01-21 17:17:04 -0500528 struct trace_array_cpu *data;
Steven Rostedt352ad252008-05-12 21:20:42 +0200529 int cpu = smp_processor_id();
530 unsigned long flags;
531 long disabled;
Steven Rostedt38697052008-10-01 13:14:09 -0400532 int pc;
Steven Rostedt352ad252008-05-12 21:20:42 +0200533
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400534 if (likely(!tracer_enabled))
Steven Rostedt352ad252008-05-12 21:20:42 +0200535 return;
536
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400537 tracing_record_cmdline(p);
538 tracing_record_cmdline(current);
539
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100540 /*
541 * Semantic is like this:
542 * - wakeup tracer handles all tasks in the system, independently
543 * from their scheduling class;
544 * - wakeup_rt tracer handles tasks belonging to sched_dl and
545 * sched_rt class;
546 * - wakeup_dl handles tasks belonging to sched_dl class only.
547 */
548 if (tracing_dl || (wakeup_dl && !dl_task(p)) ||
549 (wakeup_rt && !dl_task(p) && !rt_task(p)) ||
550 (!dl_task(p) && (p->prio >= wakeup_prio || p->prio >= current->prio)))
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400551 return;
552
Steven Rostedt38697052008-10-01 13:14:09 -0400553 pc = preempt_count();
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500554 disabled = atomic_inc_return(&per_cpu_ptr(wakeup_trace->trace_buffer.data, cpu)->disabled);
Steven Rostedt352ad252008-05-12 21:20:42 +0200555 if (unlikely(disabled != 1))
556 goto out;
557
558 /* interrupts should be off from try_to_wake_up */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100559 arch_spin_lock(&wakeup_lock);
Steven Rostedt352ad252008-05-12 21:20:42 +0200560
561 /* check for races. */
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100562 if (!tracer_enabled || tracing_dl ||
563 (!dl_task(p) && p->prio >= wakeup_prio))
Steven Rostedt352ad252008-05-12 21:20:42 +0200564 goto out_locked;
565
566 /* reset the trace */
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400567 __wakeup_reset(wakeup_trace);
Steven Rostedt352ad252008-05-12 21:20:42 +0200568
569 wakeup_cpu = task_cpu(p);
Steven Rostedt478142c32009-09-09 10:36:01 -0400570 wakeup_current_cpu = wakeup_cpu;
Steven Rostedt352ad252008-05-12 21:20:42 +0200571 wakeup_prio = p->prio;
572
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100573 /*
574 * Once you start tracing a -deadline task, don't bother tracing
575 * another task until the first one wakes up.
576 */
577 if (dl_task(p))
578 tracing_dl = 1;
579 else
580 tracing_dl = 0;
581
Matthew Wilcox (Oracle)7b3c92b2019-07-04 15:13:23 -0700582 wakeup_task = get_task_struct(p);
Steven Rostedt352ad252008-05-12 21:20:42 +0200583
584 local_save_flags(flags);
585
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500586 data = per_cpu_ptr(wakeup_trace->trace_buffer.data, wakeup_cpu);
Steven Rostedtf8ec1062009-01-21 17:17:04 -0500587 data->preempt_timestamp = ftrace_now(cpu);
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -0500588 tracing_sched_wakeup_trace(wakeup_trace, p, current, flags, pc);
Changbin Duf52d5692019-01-17 00:02:49 +0800589 __trace_stack(wakeup_trace, flags, 0, pc);
Steven Rostedt301fd742009-04-03 11:12:23 -0400590
591 /*
592 * We must be careful in using CALLER_ADDR2. But since wake_up
593 * is not called by an assembly function (where as schedule is)
594 * it should be safe to use it here.
595 */
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200596 __trace_function(wakeup_trace, CALLER_ADDR1, CALLER_ADDR2, flags, pc);
Steven Rostedt352ad252008-05-12 21:20:42 +0200597
598out_locked:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100599 arch_spin_unlock(&wakeup_lock);
Steven Rostedt352ad252008-05-12 21:20:42 +0200600out:
Steven Rostedt (Red Hat)12883ef2013-03-05 09:24:35 -0500601 atomic_dec(&per_cpu_ptr(wakeup_trace->trace_buffer.data, cpu)->disabled);
Steven Rostedt352ad252008-05-12 21:20:42 +0200602}
603
Ingo Molnare309b412008-05-12 21:20:51 +0200604static void start_wakeup_tracer(struct trace_array *tr)
Steven Rostedt352ad252008-05-12 21:20:42 +0200605{
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200606 int ret;
607
Steven Rostedt38516ab2010-04-20 17:04:50 -0400608 ret = register_trace_sched_wakeup(probe_wakeup, NULL);
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200609 if (ret) {
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400610 pr_info("wakeup trace: Couldn't activate tracepoint"
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200611 " probe to kernel_sched_wakeup\n");
612 return;
613 }
614
Steven Rostedt38516ab2010-04-20 17:04:50 -0400615 ret = register_trace_sched_wakeup_new(probe_wakeup, NULL);
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200616 if (ret) {
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400617 pr_info("wakeup trace: Couldn't activate tracepoint"
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200618 " probe to kernel_sched_wakeup_new\n");
619 goto fail_deprobe;
620 }
621
Steven Rostedt38516ab2010-04-20 17:04:50 -0400622 ret = register_trace_sched_switch(probe_wakeup_sched_switch, NULL);
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200623 if (ret) {
Mathieu Desnoyersb07c3f12008-07-18 12:16:17 -0400624 pr_info("sched trace: Couldn't activate tracepoint"
Wenji Huang73d8b8b2009-02-17 01:10:02 -0500625 " probe to kernel_sched_switch\n");
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200626 goto fail_deprobe_wake_new;
627 }
628
Steven Rostedt38516ab2010-04-20 17:04:50 -0400629 ret = register_trace_sched_migrate_task(probe_wakeup_migrate_task, NULL);
Steven Rostedt478142c32009-09-09 10:36:01 -0400630 if (ret) {
631 pr_info("wakeup trace: Couldn't activate tracepoint"
632 " probe to kernel_sched_migrate_task\n");
633 return;
634 }
635
Steven Rostedt352ad252008-05-12 21:20:42 +0200636 wakeup_reset(tr);
637
638 /*
639 * Don't let the tracer_enabled = 1 show up before
640 * the wakeup_task is reset. This may be overkill since
641 * wakeup_reset does a spin_unlock after setting the
642 * wakeup_task to NULL, but I want to be safe.
643 * This is a slow path anyway.
644 */
645 smp_wmb();
646
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400647 if (start_func_tracer(tr, is_graph(tr)))
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200648 printk(KERN_ERR "failed to start wakeup tracer\n");
Steven Rostedtad591242008-07-10 20:58:13 -0400649
Steven Rostedt352ad252008-05-12 21:20:42 +0200650 return;
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200651fail_deprobe_wake_new:
Steven Rostedt38516ab2010-04-20 17:04:50 -0400652 unregister_trace_sched_wakeup_new(probe_wakeup, NULL);
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200653fail_deprobe:
Steven Rostedt38516ab2010-04-20 17:04:50 -0400654 unregister_trace_sched_wakeup(probe_wakeup, NULL);
Steven Rostedt352ad252008-05-12 21:20:42 +0200655}
656
Ingo Molnare309b412008-05-12 21:20:51 +0200657static void stop_wakeup_tracer(struct trace_array *tr)
Steven Rostedt352ad252008-05-12 21:20:42 +0200658{
659 tracer_enabled = 0;
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400660 stop_func_tracer(tr, is_graph(tr));
Steven Rostedt38516ab2010-04-20 17:04:50 -0400661 unregister_trace_sched_switch(probe_wakeup_sched_switch, NULL);
662 unregister_trace_sched_wakeup_new(probe_wakeup, NULL);
663 unregister_trace_sched_wakeup(probe_wakeup, NULL);
664 unregister_trace_sched_migrate_task(probe_wakeup_migrate_task, NULL);
Steven Rostedt352ad252008-05-12 21:20:42 +0200665}
666
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500667static bool wakeup_busy;
668
Steven Rostedt32443512009-01-21 16:24:46 -0500669static int __wakeup_tracer_init(struct trace_array *tr)
Steven Rostedt352ad252008-05-12 21:20:42 +0200670{
Steven Rostedt (Red Hat)983f9382015-09-30 09:42:05 -0400671 save_flags = tr->trace_flags;
Steven Rostedt (Red Hat)613f04a2013-03-14 15:03:53 -0400672
673 /* non overwrite screws up the latency tracers */
Steven Rostedt2b6080f2012-05-11 13:29:49 -0400674 set_tracer_flag(tr, TRACE_ITER_OVERWRITE, 1);
675 set_tracer_flag(tr, TRACE_ITER_LATENCY_FMT, 1);
Steven Rostedte9d25fe2009-03-04 22:15:30 -0500676
Steven Rostedt (Red Hat)6d9b3fa2014-01-14 11:28:38 -0500677 tr->max_latency = 0;
Steven Rostedt352ad252008-05-12 21:20:42 +0200678 wakeup_trace = tr;
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500679 ftrace_init_array_ops(tr, wakeup_tracer_call);
Steven Rostedtc76f0692008-11-07 22:36:02 -0500680 start_wakeup_tracer(tr);
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500681
682 wakeup_busy = true;
Frederic Weisbecker1c800252008-11-16 05:57:26 +0100683 return 0;
Steven Rostedt352ad252008-05-12 21:20:42 +0200684}
685
Steven Rostedt32443512009-01-21 16:24:46 -0500686static int wakeup_tracer_init(struct trace_array *tr)
687{
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500688 if (wakeup_busy)
689 return -EBUSY;
690
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100691 wakeup_dl = 0;
Steven Rostedt32443512009-01-21 16:24:46 -0500692 wakeup_rt = 0;
693 return __wakeup_tracer_init(tr);
694}
695
696static int wakeup_rt_tracer_init(struct trace_array *tr)
697{
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500698 if (wakeup_busy)
699 return -EBUSY;
700
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100701 wakeup_dl = 0;
Steven Rostedt32443512009-01-21 16:24:46 -0500702 wakeup_rt = 1;
703 return __wakeup_tracer_init(tr);
704}
705
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100706static int wakeup_dl_tracer_init(struct trace_array *tr)
707{
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500708 if (wakeup_busy)
709 return -EBUSY;
710
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100711 wakeup_dl = 1;
712 wakeup_rt = 0;
713 return __wakeup_tracer_init(tr);
714}
715
Ingo Molnare309b412008-05-12 21:20:51 +0200716static void wakeup_tracer_reset(struct trace_array *tr)
Steven Rostedt352ad252008-05-12 21:20:42 +0200717{
Steven Rostedt (Red Hat)613f04a2013-03-14 15:03:53 -0400718 int lat_flag = save_flags & TRACE_ITER_LATENCY_FMT;
719 int overwrite_flag = save_flags & TRACE_ITER_OVERWRITE;
720
Steven Rostedtc76f0692008-11-07 22:36:02 -0500721 stop_wakeup_tracer(tr);
722 /* make sure we put back any tasks we are tracing */
723 wakeup_reset(tr);
Steven Rostedte9d25fe2009-03-04 22:15:30 -0500724
Steven Rostedt2b6080f2012-05-11 13:29:49 -0400725 set_tracer_flag(tr, TRACE_ITER_LATENCY_FMT, lat_flag);
726 set_tracer_flag(tr, TRACE_ITER_OVERWRITE, overwrite_flag);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500727 ftrace_reset_array_ops(tr);
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500728 wakeup_busy = false;
Steven Rostedt352ad252008-05-12 21:20:42 +0200729}
730
Steven Rostedt90369902008-11-05 16:05:44 -0500731static void wakeup_tracer_start(struct trace_array *tr)
732{
733 wakeup_reset(tr);
734 tracer_enabled = 1;
Steven Rostedt90369902008-11-05 16:05:44 -0500735}
736
737static void wakeup_tracer_stop(struct trace_array *tr)
738{
739 tracer_enabled = 0;
Steven Rostedt352ad252008-05-12 21:20:42 +0200740}
741
742static struct tracer wakeup_tracer __read_mostly =
743{
744 .name = "wakeup",
745 .init = wakeup_tracer_init,
746 .reset = wakeup_tracer_reset,
Steven Rostedt90369902008-11-05 16:05:44 -0500747 .start = wakeup_tracer_start,
748 .stop = wakeup_tracer_stop,
Hiraku Toyookaf43c7382012-10-02 17:27:10 +0900749 .print_max = true,
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200750 .print_header = wakeup_print_header,
751 .print_line = wakeup_print_line,
Steven Rostedt (Red Hat)328df472013-03-14 12:10:40 -0400752 .flag_changed = wakeup_flag_changed,
Steven Rostedt60a11772008-05-12 21:20:44 +0200753#ifdef CONFIG_FTRACE_SELFTEST
754 .selftest = trace_selftest_startup_wakeup,
755#endif
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200756 .open = wakeup_trace_open,
757 .close = wakeup_trace_close,
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500758 .allow_instances = true,
Hiraku Toyookaf43c7382012-10-02 17:27:10 +0900759 .use_max_tr = true,
Steven Rostedt352ad252008-05-12 21:20:42 +0200760};
761
Steven Rostedt32443512009-01-21 16:24:46 -0500762static struct tracer wakeup_rt_tracer __read_mostly =
763{
764 .name = "wakeup_rt",
765 .init = wakeup_rt_tracer_init,
766 .reset = wakeup_tracer_reset,
767 .start = wakeup_tracer_start,
768 .stop = wakeup_tracer_stop,
Hiraku Toyookaf43c7382012-10-02 17:27:10 +0900769 .print_max = true,
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200770 .print_header = wakeup_print_header,
771 .print_line = wakeup_print_line,
Steven Rostedt (Red Hat)328df472013-03-14 12:10:40 -0400772 .flag_changed = wakeup_flag_changed,
Steven Rostedt32443512009-01-21 16:24:46 -0500773#ifdef CONFIG_FTRACE_SELFTEST
774 .selftest = trace_selftest_startup_wakeup,
775#endif
Jiri Olsa7495a5b2010-09-23 14:00:53 +0200776 .open = wakeup_trace_open,
777 .close = wakeup_trace_close,
Steven Rostedt (Red Hat)65daaca72014-01-14 07:06:29 -0500778 .allow_instances = true,
Hiraku Toyookaf43c7382012-10-02 17:27:10 +0900779 .use_max_tr = true,
Steven Rostedt32443512009-01-21 16:24:46 -0500780};
781
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100782static struct tracer wakeup_dl_tracer __read_mostly =
783{
784 .name = "wakeup_dl",
785 .init = wakeup_dl_tracer_init,
786 .reset = wakeup_tracer_reset,
787 .start = wakeup_tracer_start,
788 .stop = wakeup_tracer_stop,
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100789 .print_max = true,
790 .print_header = wakeup_print_header,
791 .print_line = wakeup_print_line,
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100792 .flag_changed = wakeup_flag_changed,
793#ifdef CONFIG_FTRACE_SELFTEST
794 .selftest = trace_selftest_startup_wakeup,
795#endif
796 .open = wakeup_trace_open,
797 .close = wakeup_trace_close,
Zhou Chengming8d414bd2016-11-14 11:19:13 +0800798 .allow_instances = true,
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100799 .use_max_tr = true,
800};
801
Steven Rostedt352ad252008-05-12 21:20:42 +0200802__init static int init_wakeup_tracer(void)
803{
804 int ret;
805
806 ret = register_tracer(&wakeup_tracer);
807 if (ret)
808 return ret;
809
Steven Rostedt32443512009-01-21 16:24:46 -0500810 ret = register_tracer(&wakeup_rt_tracer);
811 if (ret)
812 return ret;
813
Dario Faggioliaf6ace72013-11-07 14:43:42 +0100814 ret = register_tracer(&wakeup_dl_tracer);
815 if (ret)
816 return ret;
817
Steven Rostedt352ad252008-05-12 21:20:42 +0200818 return 0;
819}
Steven Rostedt6f415672012-10-05 12:13:07 -0400820core_initcall(init_wakeup_tracer);