tracing: Use pause-on-trace with the latency tracers
[linux-2.6-block.git] / kernel / trace / trace_irqsoff.c
CommitLineData
bcea3f96 1// SPDX-License-Identifier: GPL-2.0
81d68a96 2/*
73d8b8bc 3 * trace irqs off critical timings
81d68a96
SR
4 *
5 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
6 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
7 *
8 * From code in the latency_tracer, that is:
9 *
10 * Copyright (C) 2004-2006 Ingo Molnar
6d49e352 11 * Copyright (C) 2004 Nadia Yvette Chambers
81d68a96
SR
12 */
13#include <linux/kallsyms.h>
81d68a96
SR
14#include <linux/uaccess.h>
15#include <linux/module.h>
16#include <linux/ftrace.h>
eeeb080b 17#include <linux/kprobes.h>
81d68a96
SR
18
19#include "trace.h"
20
d5915816
JF
21#include <trace/events/preemptirq.h>
22
aaecaa0b 23#if defined(CONFIG_IRQSOFF_TRACER) || defined(CONFIG_PREEMPT_TRACER)
81d68a96
SR
24static struct trace_array *irqsoff_trace __read_mostly;
25static int tracer_enabled __read_mostly;
26
6cd8a4bb
SR
27static DEFINE_PER_CPU(int, tracing_cpu);
28
5389f6fa 29static DEFINE_RAW_SPINLOCK(max_trace_lock);
89b2f978 30
6cd8a4bb
SR
31enum {
32 TRACER_IRQS_OFF = (1 << 1),
33 TRACER_PREEMPT_OFF = (1 << 2),
34};
35
36static int trace_type __read_mostly;
37
613f04a0 38static int save_flags;
e9d25fe6 39
62b915f1
JO
40static void stop_irqsoff_tracer(struct trace_array *tr, int graph);
41static int start_irqsoff_tracer(struct trace_array *tr, int graph);
42
6cd8a4bb 43#ifdef CONFIG_PREEMPT_TRACER
e309b41d 44static inline int
f27107fa 45preempt_trace(int pc)
6cd8a4bb 46{
f27107fa 47 return ((trace_type & TRACER_PREEMPT_OFF) && pc);
6cd8a4bb
SR
48}
49#else
f27107fa 50# define preempt_trace(pc) (0)
6cd8a4bb
SR
51#endif
52
53#ifdef CONFIG_IRQSOFF_TRACER
e309b41d 54static inline int
6cd8a4bb
SR
55irq_trace(void)
56{
57 return ((trace_type & TRACER_IRQS_OFF) &&
58 irqs_disabled());
59}
60#else
61# define irq_trace() (0)
62#endif
63
62b915f1 64#ifdef CONFIG_FUNCTION_GRAPH_TRACER
03905582 65static int irqsoff_display_graph(struct trace_array *tr, int set);
983f938a 66# define is_graph(tr) ((tr)->trace_flags & TRACE_ITER_DISPLAY_GRAPH)
03905582
SRRH
67#else
68static inline int irqsoff_display_graph(struct trace_array *tr, int set)
69{
70 return -EINVAL;
71}
983f938a 72# define is_graph(tr) false
62b915f1 73#endif
62b915f1 74
81d68a96
SR
75/*
76 * Sequence count - we record it when starting a measurement and
77 * skip the latency if the sequence has changed - some other section
78 * did a maximum and could disturb our measurement with serial console
79 * printouts, etc. Truly coinciding maximum latencies should be rare
25985edc 80 * and what happens together happens separately as well, so this doesn't
81d68a96
SR
81 * decrease the validity of the maximum found:
82 */
83static __cacheline_aligned_in_smp unsigned long max_sequence;
84
606576ce 85#ifdef CONFIG_FUNCTION_TRACER
81d68a96 86/*
5e6d2b9c
SR
87 * Prologue for the preempt and irqs off function tracers.
88 *
89 * Returns 1 if it is OK to continue, and data->disabled is
90 * incremented.
91 * 0 if the trace is to be ignored, and data->disabled
92 * is kept the same.
93 *
94 * Note, this function is also used outside this ifdef but
95 * inside the #ifdef of the function graph tracer below.
96 * This is OK, since the function graph tracer is
97 * dependent on the function tracer.
81d68a96 98 */
5e6d2b9c
SR
99static int func_prolog_dec(struct trace_array *tr,
100 struct trace_array_cpu **data,
101 unsigned long *flags)
81d68a96 102{
81d68a96
SR
103 long disabled;
104 int cpu;
105
361943ad
SR
106 /*
107 * Does not matter if we preempt. We test the flags
108 * afterward, to see if irqs are disabled or not.
109 * If we preempt and get a false positive, the flags
110 * test will fail.
111 */
112 cpu = raw_smp_processor_id();
113 if (likely(!per_cpu(tracing_cpu, cpu)))
5e6d2b9c 114 return 0;
81d68a96 115
5e6d2b9c 116 local_save_flags(*flags);
cb86e053
SRRH
117 /*
118 * Slight chance to get a false positive on tracing_cpu,
119 * although I'm starting to think there isn't a chance.
120 * Leave this for now just to be paranoid.
121 */
122 if (!irqs_disabled_flags(*flags) && !preempt_count())
5e6d2b9c 123 return 0;
81d68a96 124
1c5eb448 125 *data = per_cpu_ptr(tr->array_buffer.data, cpu);
5e6d2b9c 126 disabled = atomic_inc_return(&(*data)->disabled);
81d68a96
SR
127
128 if (likely(disabled == 1))
5e6d2b9c
SR
129 return 1;
130
131 atomic_dec(&(*data)->disabled);
132
133 return 0;
134}
135
136/*
137 * irqsoff uses its own tracer function to keep the overhead down:
138 */
139static void
2f5f6ad9 140irqsoff_tracer_call(unsigned long ip, unsigned long parent_ip,
d19ad077 141 struct ftrace_ops *op, struct ftrace_regs *fregs)
5e6d2b9c
SR
142{
143 struct trace_array *tr = irqsoff_trace;
144 struct trace_array_cpu *data;
145 unsigned long flags;
146
147 if (!func_prolog_dec(tr, &data, &flags))
148 return;
149
150 trace_function(tr, ip, parent_ip, flags, preempt_count());
81d68a96
SR
151
152 atomic_dec(&data->disabled);
153}
606576ce 154#endif /* CONFIG_FUNCTION_TRACER */
81d68a96 155
62b915f1 156#ifdef CONFIG_FUNCTION_GRAPH_TRACER
03905582 157static int irqsoff_display_graph(struct trace_array *tr, int set)
62b915f1
JO
158{
159 int cpu;
160
983f938a 161 if (!(is_graph(tr) ^ set))
62b915f1
JO
162 return 0;
163
164 stop_irqsoff_tracer(irqsoff_trace, !set);
165
166 for_each_possible_cpu(cpu)
167 per_cpu(tracing_cpu, cpu) = 0;
168
6d9b3fa5 169 tr->max_latency = 0;
1c5eb448 170 tracing_reset_online_cpus(&irqsoff_trace->array_buffer);
62b915f1
JO
171
172 return start_irqsoff_tracer(irqsoff_trace, set);
173}
174
175static int irqsoff_graph_entry(struct ftrace_graph_ent *trace)
176{
177 struct trace_array *tr = irqsoff_trace;
178 struct trace_array_cpu *data;
179 unsigned long flags;
62b915f1 180 int ret;
62b915f1
JO
181 int pc;
182
1a414428
SRRH
183 if (ftrace_graph_ignore_func(trace))
184 return 0;
185 /*
186 * Do not trace a function if it's filtered by set_graph_notrace.
187 * Make the index of ret stack negative to indicate that it should
188 * ignore further functions. But it needs its own ret stack entry
189 * to recover the original index in order to continue tracing after
190 * returning from the function.
191 */
192 if (ftrace_graph_notrace_addr(trace->func))
193 return 1;
194
5e6d2b9c 195 if (!func_prolog_dec(tr, &data, &flags))
62b915f1
JO
196 return 0;
197
5e6d2b9c
SR
198 pc = preempt_count();
199 ret = __trace_graph_entry(tr, trace, flags, pc);
62b915f1 200 atomic_dec(&data->disabled);
5e6d2b9c 201
62b915f1
JO
202 return ret;
203}
204
205static void irqsoff_graph_return(struct ftrace_graph_ret *trace)
206{
207 struct trace_array *tr = irqsoff_trace;
208 struct trace_array_cpu *data;
209 unsigned long flags;
62b915f1
JO
210 int pc;
211
5cf99a0f
SRV
212 ftrace_graph_addr_finish(trace);
213
5e6d2b9c 214 if (!func_prolog_dec(tr, &data, &flags))
62b915f1
JO
215 return;
216
5e6d2b9c
SR
217 pc = preempt_count();
218 __trace_graph_return(tr, trace, flags, pc);
62b915f1
JO
219 atomic_dec(&data->disabled);
220}
221
688f7089
SRV
222static struct fgraph_ops fgraph_ops = {
223 .entryfunc = &irqsoff_graph_entry,
224 .retfunc = &irqsoff_graph_return,
225};
226
62b915f1
JO
227static void irqsoff_trace_open(struct trace_iterator *iter)
228{
983f938a 229 if (is_graph(iter->tr))
62b915f1
JO
230 graph_trace_open(iter);
231
232}
233
234static void irqsoff_trace_close(struct trace_iterator *iter)
235{
236 if (iter->private)
237 graph_trace_close(iter);
238}
239
240#define GRAPH_TRACER_FLAGS (TRACE_GRAPH_PRINT_CPU | \
321e68b0 241 TRACE_GRAPH_PRINT_PROC | \
9acd8de6 242 TRACE_GRAPH_PRINT_REL_TIME | \
321e68b0 243 TRACE_GRAPH_PRINT_DURATION)
62b915f1
JO
244
245static enum print_line_t irqsoff_print_line(struct trace_iterator *iter)
246{
62b915f1
JO
247 /*
248 * In graph mode call the graph tracer output function,
249 * otherwise go with the TRACE_FN event handler
250 */
983f938a 251 if (is_graph(iter->tr))
0a772620 252 return print_graph_function_flags(iter, GRAPH_TRACER_FLAGS);
62b915f1
JO
253
254 return TRACE_TYPE_UNHANDLED;
255}
256
257static void irqsoff_print_header(struct seq_file *s)
258{
983f938a
SRRH
259 struct trace_array *tr = irqsoff_trace;
260
261 if (is_graph(tr))
0a772620
JO
262 print_graph_headers_flags(s, GRAPH_TRACER_FLAGS);
263 else
62b915f1
JO
264 trace_default_header(s);
265}
266
62b915f1
JO
267static void
268__trace_function(struct trace_array *tr,
269 unsigned long ip, unsigned long parent_ip,
270 unsigned long flags, int pc)
271{
983f938a 272 if (is_graph(tr))
0a772620
JO
273 trace_graph_function(tr, ip, parent_ip, flags, pc);
274 else
62b915f1 275 trace_function(tr, ip, parent_ip, flags, pc);
62b915f1
JO
276}
277
278#else
279#define __trace_function trace_function
280
62b915f1
JO
281static enum print_line_t irqsoff_print_line(struct trace_iterator *iter)
282{
283 return TRACE_TYPE_UNHANDLED;
284}
285
62b915f1
JO
286static void irqsoff_trace_open(struct trace_iterator *iter) { }
287static void irqsoff_trace_close(struct trace_iterator *iter) { }
7e9a49ef
JO
288
289#ifdef CONFIG_FUNCTION_TRACER
290static void irqsoff_print_header(struct seq_file *s)
291{
292 trace_default_header(s);
293}
294#else
295static void irqsoff_print_header(struct seq_file *s)
296{
297 trace_latency_header(s);
298}
299#endif /* CONFIG_FUNCTION_TRACER */
62b915f1
JO
300#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
301
81d68a96
SR
302/*
303 * Should this new latency be reported/recorded?
304 */
a5a1d1c2 305static bool report_latency(struct trace_array *tr, u64 delta)
81d68a96
SR
306{
307 if (tracing_thresh) {
308 if (delta < tracing_thresh)
79851821 309 return false;
81d68a96 310 } else {
6d9b3fa5 311 if (delta <= tr->max_latency)
79851821 312 return false;
81d68a96 313 }
79851821 314 return true;
81d68a96
SR
315}
316
e309b41d 317static void
81d68a96
SR
318check_critical_timing(struct trace_array *tr,
319 struct trace_array_cpu *data,
320 unsigned long parent_ip,
321 int cpu)
322{
a5a1d1c2 323 u64 T0, T1, delta;
81d68a96 324 unsigned long flags;
38697053 325 int pc;
81d68a96 326
81d68a96 327 T0 = data->preempt_timestamp;
750ed1a4 328 T1 = ftrace_now(cpu);
81d68a96
SR
329 delta = T1-T0;
330
331 local_save_flags(flags);
332
6450c1d3
SR
333 pc = preempt_count();
334
6d9b3fa5 335 if (!report_latency(tr, delta))
81d68a96
SR
336 goto out;
337
5389f6fa 338 raw_spin_lock_irqsave(&max_trace_lock, flags);
81d68a96 339
89b2f978 340 /* check if we are still the max latency */
6d9b3fa5 341 if (!report_latency(tr, delta))
89b2f978
SR
342 goto out_unlock;
343
62b915f1 344 __trace_function(tr, CALLER_ADDR0, parent_ip, flags, pc);
cc51a0fc
SR
345 /* Skip 5 functions to get to the irq/preempt enable function */
346 __trace_stack(tr, flags, 5, pc);
81d68a96 347
81d68a96 348 if (data->critical_sequence != max_sequence)
89b2f978 349 goto out_unlock;
81d68a96 350
81d68a96
SR
351 data->critical_end = parent_ip;
352
b5130b1e 353 if (likely(!is_tracing_stopped())) {
6d9b3fa5 354 tr->max_latency = delta;
b5130b1e
CE
355 update_max_tr_single(tr, current, cpu);
356 }
81d68a96 357
81d68a96
SR
358 max_sequence++;
359
89b2f978 360out_unlock:
5389f6fa 361 raw_spin_unlock_irqrestore(&max_trace_lock, flags);
89b2f978 362
81d68a96
SR
363out:
364 data->critical_sequence = max_sequence;
750ed1a4 365 data->preempt_timestamp = ftrace_now(cpu);
62b915f1 366 __trace_function(tr, CALLER_ADDR0, parent_ip, flags, pc);
81d68a96
SR
367}
368
eeeb080b 369static nokprobe_inline void
f27107fa 370start_critical_timing(unsigned long ip, unsigned long parent_ip, int pc)
81d68a96
SR
371{
372 int cpu;
373 struct trace_array *tr = irqsoff_trace;
374 struct trace_array_cpu *data;
375 unsigned long flags;
376
10246fa3 377 if (!tracer_enabled || !tracing_is_enabled())
81d68a96
SR
378 return;
379
c5f888ca
SR
380 cpu = raw_smp_processor_id();
381
382 if (per_cpu(tracing_cpu, cpu))
6cd8a4bb
SR
383 return;
384
1c5eb448 385 data = per_cpu_ptr(tr->array_buffer.data, cpu);
81d68a96 386
c5f888ca 387 if (unlikely(!data) || atomic_read(&data->disabled))
81d68a96
SR
388 return;
389
390 atomic_inc(&data->disabled);
391
392 data->critical_sequence = max_sequence;
750ed1a4 393 data->preempt_timestamp = ftrace_now(cpu);
6cd8a4bb 394 data->critical_start = parent_ip ? : ip;
81d68a96
SR
395
396 local_save_flags(flags);
6cd8a4bb 397
f27107fa 398 __trace_function(tr, ip, parent_ip, flags, pc);
81d68a96 399
c5f888ca 400 per_cpu(tracing_cpu, cpu) = 1;
6cd8a4bb 401
81d68a96
SR
402 atomic_dec(&data->disabled);
403}
404
eeeb080b 405static nokprobe_inline void
f27107fa 406stop_critical_timing(unsigned long ip, unsigned long parent_ip, int pc)
81d68a96
SR
407{
408 int cpu;
409 struct trace_array *tr = irqsoff_trace;
410 struct trace_array_cpu *data;
411 unsigned long flags;
412
c5f888ca 413 cpu = raw_smp_processor_id();
6cd8a4bb 414 /* Always clear the tracing cpu on stopping the trace */
c5f888ca
SR
415 if (unlikely(per_cpu(tracing_cpu, cpu)))
416 per_cpu(tracing_cpu, cpu) = 0;
6cd8a4bb
SR
417 else
418 return;
419
10246fa3 420 if (!tracer_enabled || !tracing_is_enabled())
81d68a96
SR
421 return;
422
1c5eb448 423 data = per_cpu_ptr(tr->array_buffer.data, cpu);
81d68a96 424
3928a8a2 425 if (unlikely(!data) ||
81d68a96
SR
426 !data->critical_start || atomic_read(&data->disabled))
427 return;
428
429 atomic_inc(&data->disabled);
c5f888ca 430
81d68a96 431 local_save_flags(flags);
f27107fa 432 __trace_function(tr, ip, parent_ip, flags, pc);
6cd8a4bb 433 check_critical_timing(tr, data, parent_ip ? : ip, cpu);
81d68a96
SR
434 data->critical_start = 0;
435 atomic_dec(&data->disabled);
436}
437
6cd8a4bb 438/* start and stop critical timings used to for stoppage (in idle) */
e309b41d 439void start_critical_timings(void)
81d68a96 440{
f27107fa
SRV
441 int pc = preempt_count();
442
443 if (preempt_trace(pc) || irq_trace())
444 start_critical_timing(CALLER_ADDR0, CALLER_ADDR1, pc);
81d68a96 445}
1fe37104 446EXPORT_SYMBOL_GPL(start_critical_timings);
eeeb080b 447NOKPROBE_SYMBOL(start_critical_timings);
81d68a96 448
e309b41d 449void stop_critical_timings(void)
81d68a96 450{
f27107fa
SRV
451 int pc = preempt_count();
452
453 if (preempt_trace(pc) || irq_trace())
454 stop_critical_timing(CALLER_ADDR0, CALLER_ADDR1, pc);
81d68a96 455}
1fe37104 456EXPORT_SYMBOL_GPL(stop_critical_timings);
eeeb080b 457NOKPROBE_SYMBOL(stop_critical_timings);
81d68a96 458
8179e8a1
SRRH
459#ifdef CONFIG_FUNCTION_TRACER
460static bool function_enabled;
461
4104d326 462static int register_irqsoff_function(struct trace_array *tr, int graph, int set)
81d68a96 463{
328df475 464 int ret;
62b915f1 465
328df475 466 /* 'set' is set if TRACE_ITER_FUNCTION is about to be set */
983f938a 467 if (function_enabled || (!set && !(tr->trace_flags & TRACE_ITER_FUNCTION)))
328df475
SRRH
468 return 0;
469
470 if (graph)
688f7089 471 ret = register_ftrace_graph(&fgraph_ops);
328df475 472 else
4104d326 473 ret = register_ftrace_function(tr->ops);
328df475
SRRH
474
475 if (!ret)
476 function_enabled = true;
477
478 return ret;
479}
480
4104d326 481static void unregister_irqsoff_function(struct trace_array *tr, int graph)
328df475
SRRH
482{
483 if (!function_enabled)
484 return;
485
486 if (graph)
688f7089 487 unregister_ftrace_graph(&fgraph_ops);
328df475 488 else
4104d326 489 unregister_ftrace_function(tr->ops);
328df475
SRRH
490
491 function_enabled = false;
492}
493
8179e8a1 494static int irqsoff_function_set(struct trace_array *tr, u32 mask, int set)
328df475 495{
8179e8a1
SRRH
496 if (!(mask & TRACE_ITER_FUNCTION))
497 return 0;
498
328df475 499 if (set)
983f938a 500 register_irqsoff_function(tr, is_graph(tr), 1);
328df475 501 else
983f938a 502 unregister_irqsoff_function(tr, is_graph(tr));
8179e8a1
SRRH
503 return 1;
504}
505#else
506static int register_irqsoff_function(struct trace_array *tr, int graph, int set)
507{
03905582 508 return 0;
328df475 509}
8179e8a1
SRRH
510static void unregister_irqsoff_function(struct trace_array *tr, int graph) { }
511static inline int irqsoff_function_set(struct trace_array *tr, u32 mask, int set)
512{
513 return 0;
514}
515#endif /* CONFIG_FUNCTION_TRACER */
328df475 516
bf6065b5 517static int irqsoff_flag_changed(struct trace_array *tr, u32 mask, int set)
328df475 518{
bf6065b5
SRRH
519 struct tracer *tracer = tr->current_trace;
520
8179e8a1
SRRH
521 if (irqsoff_function_set(tr, mask, set))
522 return 0;
03905582 523
729358da 524#ifdef CONFIG_FUNCTION_GRAPH_TRACER
03905582
SRRH
525 if (mask & TRACE_ITER_DISPLAY_GRAPH)
526 return irqsoff_display_graph(tr, set);
729358da 527#endif
328df475
SRRH
528
529 return trace_keep_overwrite(tracer, mask, set);
530}
531
532static int start_irqsoff_tracer(struct trace_array *tr, int graph)
533{
534 int ret;
535
4104d326 536 ret = register_irqsoff_function(tr, graph, 0);
62b915f1
JO
537
538 if (!ret && tracing_is_enabled())
9036990d 539 tracer_enabled = 1;
94523e81 540 else
9036990d 541 tracer_enabled = 0;
62b915f1
JO
542
543 return ret;
81d68a96
SR
544}
545
62b915f1 546static void stop_irqsoff_tracer(struct trace_array *tr, int graph)
81d68a96 547{
81d68a96 548 tracer_enabled = 0;
62b915f1 549
4104d326 550 unregister_irqsoff_function(tr, graph);
81d68a96
SR
551}
552
02f2f764
SRRH
553static bool irqsoff_busy;
554
555static int __irqsoff_tracer_init(struct trace_array *tr)
81d68a96 556{
02f2f764
SRRH
557 if (irqsoff_busy)
558 return -EBUSY;
559
983f938a 560 save_flags = tr->trace_flags;
613f04a0
SRRH
561
562 /* non overwrite screws up the latency tracers */
2b6080f2
SR
563 set_tracer_flag(tr, TRACE_ITER_OVERWRITE, 1);
564 set_tracer_flag(tr, TRACE_ITER_LATENCY_FMT, 1);
da7f84cd
VR
565 /* without pause, we will produce garbage if another latency occurs */
566 set_tracer_flag(tr, TRACE_ITER_PAUSE_ON_TRACE, 1);
e9d25fe6 567
6d9b3fa5 568 tr->max_latency = 0;
81d68a96 569 irqsoff_trace = tr;
c5f888ca 570 /* make sure that the tracer is visible */
81d68a96 571 smp_wmb();
62b915f1 572
4104d326
SRRH
573 ftrace_init_array_ops(tr, irqsoff_tracer_call);
574
575 /* Only toplevel instance supports graph tracing */
576 if (start_irqsoff_tracer(tr, (tr->flags & TRACE_ARRAY_FL_GLOBAL &&
983f938a 577 is_graph(tr))))
62b915f1 578 printk(KERN_ERR "failed to start irqsoff tracer\n");
02f2f764
SRRH
579
580 irqsoff_busy = true;
581 return 0;
81d68a96
SR
582}
583
2b27ece6 584static void __irqsoff_tracer_reset(struct trace_array *tr)
81d68a96 585{
613f04a0
SRRH
586 int lat_flag = save_flags & TRACE_ITER_LATENCY_FMT;
587 int overwrite_flag = save_flags & TRACE_ITER_OVERWRITE;
da7f84cd 588 int pause_flag = save_flags & TRACE_ITER_PAUSE_ON_TRACE;
613f04a0 589
983f938a 590 stop_irqsoff_tracer(tr, is_graph(tr));
e9d25fe6 591
2b6080f2
SR
592 set_tracer_flag(tr, TRACE_ITER_LATENCY_FMT, lat_flag);
593 set_tracer_flag(tr, TRACE_ITER_OVERWRITE, overwrite_flag);
da7f84cd 594 set_tracer_flag(tr, TRACE_ITER_PAUSE_ON_TRACE, pause_flag);
4104d326 595 ftrace_reset_array_ops(tr);
02f2f764
SRRH
596
597 irqsoff_busy = false;
81d68a96
SR
598}
599
9036990d
SR
600static void irqsoff_tracer_start(struct trace_array *tr)
601{
9036990d 602 tracer_enabled = 1;
9036990d
SR
603}
604
605static void irqsoff_tracer_stop(struct trace_array *tr)
606{
607 tracer_enabled = 0;
81d68a96
SR
608}
609
6cd8a4bb 610#ifdef CONFIG_IRQSOFF_TRACER
c3bc8fd6
JFG
611/*
612 * We are only interested in hardirq on/off events:
613 */
3f1756dc 614void tracer_hardirqs_on(unsigned long a0, unsigned long a1)
c3bc8fd6 615{
f27107fa
SRV
616 unsigned int pc = preempt_count();
617
f27107fa
SRV
618 if (!preempt_trace(pc) && irq_trace())
619 stop_critical_timing(a0, a1, pc);
c3bc8fd6 620}
eeeb080b 621NOKPROBE_SYMBOL(tracer_hardirqs_on);
c3bc8fd6 622
3f1756dc 623void tracer_hardirqs_off(unsigned long a0, unsigned long a1)
c3bc8fd6 624{
f27107fa
SRV
625 unsigned int pc = preempt_count();
626
f27107fa
SRV
627 if (!preempt_trace(pc) && irq_trace())
628 start_critical_timing(a0, a1, pc);
c3bc8fd6 629}
eeeb080b 630NOKPROBE_SYMBOL(tracer_hardirqs_off);
c3bc8fd6 631
1c80025a 632static int irqsoff_tracer_init(struct trace_array *tr)
6cd8a4bb
SR
633{
634 trace_type = TRACER_IRQS_OFF;
635
02f2f764 636 return __irqsoff_tracer_init(tr);
6cd8a4bb 637}
2b27ece6
JFG
638
639static void irqsoff_tracer_reset(struct trace_array *tr)
640{
641 __irqsoff_tracer_reset(tr);
642}
643
81d68a96
SR
644static struct tracer irqsoff_tracer __read_mostly =
645{
646 .name = "irqsoff",
647 .init = irqsoff_tracer_init,
648 .reset = irqsoff_tracer_reset,
9036990d
SR
649 .start = irqsoff_tracer_start,
650 .stop = irqsoff_tracer_stop,
f43c738b 651 .print_max = true,
62b915f1
JO
652 .print_header = irqsoff_print_header,
653 .print_line = irqsoff_print_line,
328df475 654 .flag_changed = irqsoff_flag_changed,
60a11774
SR
655#ifdef CONFIG_FTRACE_SELFTEST
656 .selftest = trace_selftest_startup_irqsoff,
657#endif
62b915f1
JO
658 .open = irqsoff_trace_open,
659 .close = irqsoff_trace_close,
02f2f764 660 .allow_instances = true,
f43c738b 661 .use_max_tr = true,
81d68a96 662};
c3bc8fd6 663#endif /* CONFIG_IRQSOFF_TRACER */
6cd8a4bb
SR
664
665#ifdef CONFIG_PREEMPT_TRACER
3f1756dc 666void tracer_preempt_on(unsigned long a0, unsigned long a1)
c3bc8fd6 667{
f27107fa
SRV
668 int pc = preempt_count();
669
670 if (preempt_trace(pc) && !irq_trace())
671 stop_critical_timing(a0, a1, pc);
c3bc8fd6
JFG
672}
673
3f1756dc 674void tracer_preempt_off(unsigned long a0, unsigned long a1)
c3bc8fd6 675{
f27107fa
SRV
676 int pc = preempt_count();
677
678 if (preempt_trace(pc) && !irq_trace())
679 start_critical_timing(a0, a1, pc);
c3bc8fd6
JFG
680}
681
1c80025a 682static int preemptoff_tracer_init(struct trace_array *tr)
6cd8a4bb
SR
683{
684 trace_type = TRACER_PREEMPT_OFF;
685
02f2f764 686 return __irqsoff_tracer_init(tr);
6cd8a4bb
SR
687}
688
2b27ece6
JFG
689static void preemptoff_tracer_reset(struct trace_array *tr)
690{
691 __irqsoff_tracer_reset(tr);
692}
693
6cd8a4bb
SR
694static struct tracer preemptoff_tracer __read_mostly =
695{
696 .name = "preemptoff",
697 .init = preemptoff_tracer_init,
2b27ece6 698 .reset = preemptoff_tracer_reset,
9036990d
SR
699 .start = irqsoff_tracer_start,
700 .stop = irqsoff_tracer_stop,
f43c738b 701 .print_max = true,
62b915f1
JO
702 .print_header = irqsoff_print_header,
703 .print_line = irqsoff_print_line,
328df475 704 .flag_changed = irqsoff_flag_changed,
60a11774
SR
705#ifdef CONFIG_FTRACE_SELFTEST
706 .selftest = trace_selftest_startup_preemptoff,
707#endif
62b915f1
JO
708 .open = irqsoff_trace_open,
709 .close = irqsoff_trace_close,
02f2f764 710 .allow_instances = true,
f43c738b 711 .use_max_tr = true,
6cd8a4bb 712};
c3bc8fd6 713#endif /* CONFIG_PREEMPT_TRACER */
6cd8a4bb 714
c3bc8fd6 715#if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
6cd8a4bb 716
1c80025a 717static int preemptirqsoff_tracer_init(struct trace_array *tr)
6cd8a4bb
SR
718{
719 trace_type = TRACER_IRQS_OFF | TRACER_PREEMPT_OFF;
720
02f2f764 721 return __irqsoff_tracer_init(tr);
6cd8a4bb
SR
722}
723
2b27ece6
JFG
724static void preemptirqsoff_tracer_reset(struct trace_array *tr)
725{
726 __irqsoff_tracer_reset(tr);
727}
728
6cd8a4bb
SR
729static struct tracer preemptirqsoff_tracer __read_mostly =
730{
731 .name = "preemptirqsoff",
732 .init = preemptirqsoff_tracer_init,
2b27ece6 733 .reset = preemptirqsoff_tracer_reset,
9036990d
SR
734 .start = irqsoff_tracer_start,
735 .stop = irqsoff_tracer_stop,
f43c738b 736 .print_max = true,
62b915f1
JO
737 .print_header = irqsoff_print_header,
738 .print_line = irqsoff_print_line,
328df475 739 .flag_changed = irqsoff_flag_changed,
60a11774
SR
740#ifdef CONFIG_FTRACE_SELFTEST
741 .selftest = trace_selftest_startup_preemptirqsoff,
742#endif
62b915f1
JO
743 .open = irqsoff_trace_open,
744 .close = irqsoff_trace_close,
02f2f764 745 .allow_instances = true,
f43c738b 746 .use_max_tr = true,
6cd8a4bb 747};
6cd8a4bb 748#endif
81d68a96
SR
749
750__init static int init_irqsoff_tracer(void)
751{
c3bc8fd6
JFG
752#ifdef CONFIG_IRQSOFF_TRACER
753 register_tracer(&irqsoff_tracer);
aaecaa0b 754#endif
c3bc8fd6
JFG
755#ifdef CONFIG_PREEMPT_TRACER
756 register_tracer(&preemptoff_tracer);
aaecaa0b 757#endif
c3bc8fd6
JFG
758#if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
759 register_tracer(&preemptirqsoff_tracer);
aaecaa0b
JF
760#endif
761
c3bc8fd6 762 return 0;
aaecaa0b 763}
c3bc8fd6
JFG
764core_initcall(init_irqsoff_tracer);
765#endif /* IRQSOFF_TRACER || PREEMPTOFF_TRACER */