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