Merge branch 'linus' into tracing/hw-breakpoints
[deliverable/linux.git] / kernel / trace / trace_selftest.c
1 /* Include in trace.c */
2
3 #include <linux/stringify.h>
4 #include <linux/kthread.h>
5 #include <linux/delay.h>
6
7 static inline int trace_valid_entry(struct trace_entry *entry)
8 {
9 switch (entry->type) {
10 case TRACE_FN:
11 case TRACE_CTX:
12 case TRACE_WAKE:
13 case TRACE_STACK:
14 case TRACE_PRINT:
15 case TRACE_SPECIAL:
16 case TRACE_BRANCH:
17 case TRACE_GRAPH_ENT:
18 case TRACE_GRAPH_RET:
19 case TRACE_HW_BRANCHES:
20 case TRACE_KSYM:
21 return 1;
22 }
23 return 0;
24 }
25
26 static int trace_test_buffer_cpu(struct trace_array *tr, int cpu)
27 {
28 struct ring_buffer_event *event;
29 struct trace_entry *entry;
30 unsigned int loops = 0;
31
32 while ((event = ring_buffer_consume(tr->buffer, cpu, NULL))) {
33 entry = ring_buffer_event_data(event);
34
35 /*
36 * The ring buffer is a size of trace_buf_size, if
37 * we loop more than the size, there's something wrong
38 * with the ring buffer.
39 */
40 if (loops++ > trace_buf_size) {
41 printk(KERN_CONT ".. bad ring buffer ");
42 goto failed;
43 }
44 if (!trace_valid_entry(entry)) {
45 printk(KERN_CONT ".. invalid entry %d ",
46 entry->type);
47 goto failed;
48 }
49 }
50 return 0;
51
52 failed:
53 /* disable tracing */
54 tracing_disabled = 1;
55 printk(KERN_CONT ".. corrupted trace buffer .. ");
56 return -1;
57 }
58
59 /*
60 * Test the trace buffer to see if all the elements
61 * are still sane.
62 */
63 static int trace_test_buffer(struct trace_array *tr, unsigned long *count)
64 {
65 unsigned long flags, cnt = 0;
66 int cpu, ret = 0;
67
68 /* Don't allow flipping of max traces now */
69 local_irq_save(flags);
70 __raw_spin_lock(&ftrace_max_lock);
71
72 cnt = ring_buffer_entries(tr->buffer);
73
74 /*
75 * The trace_test_buffer_cpu runs a while loop to consume all data.
76 * If the calling tracer is broken, and is constantly filling
77 * the buffer, this will run forever, and hard lock the box.
78 * We disable the ring buffer while we do this test to prevent
79 * a hard lock up.
80 */
81 tracing_off();
82 for_each_possible_cpu(cpu) {
83 ret = trace_test_buffer_cpu(tr, cpu);
84 if (ret)
85 break;
86 }
87 tracing_on();
88 __raw_spin_unlock(&ftrace_max_lock);
89 local_irq_restore(flags);
90
91 if (count)
92 *count = cnt;
93
94 return ret;
95 }
96
97 static inline void warn_failed_init_tracer(struct tracer *trace, int init_ret)
98 {
99 printk(KERN_WARNING "Failed to init %s tracer, init returned %d\n",
100 trace->name, init_ret);
101 }
102 #ifdef CONFIG_FUNCTION_TRACER
103
104 #ifdef CONFIG_DYNAMIC_FTRACE
105
106 /* Test dynamic code modification and ftrace filters */
107 int trace_selftest_startup_dynamic_tracing(struct tracer *trace,
108 struct trace_array *tr,
109 int (*func)(void))
110 {
111 int save_ftrace_enabled = ftrace_enabled;
112 int save_tracer_enabled = tracer_enabled;
113 unsigned long count;
114 char *func_name;
115 int ret;
116
117 /* The ftrace test PASSED */
118 printk(KERN_CONT "PASSED\n");
119 pr_info("Testing dynamic ftrace: ");
120
121 /* enable tracing, and record the filter function */
122 ftrace_enabled = 1;
123 tracer_enabled = 1;
124
125 /* passed in by parameter to fool gcc from optimizing */
126 func();
127
128 /*
129 * Some archs *cough*PowerPC*cough* add characters to the
130 * start of the function names. We simply put a '*' to
131 * accommodate them.
132 */
133 func_name = "*" __stringify(DYN_FTRACE_TEST_NAME);
134
135 /* filter only on our function */
136 ftrace_set_filter(func_name, strlen(func_name), 1);
137
138 /* enable tracing */
139 ret = tracer_init(trace, tr);
140 if (ret) {
141 warn_failed_init_tracer(trace, ret);
142 goto out;
143 }
144
145 /* Sleep for a 1/10 of a second */
146 msleep(100);
147
148 /* we should have nothing in the buffer */
149 ret = trace_test_buffer(tr, &count);
150 if (ret)
151 goto out;
152
153 if (count) {
154 ret = -1;
155 printk(KERN_CONT ".. filter did not filter .. ");
156 goto out;
157 }
158
159 /* call our function again */
160 func();
161
162 /* sleep again */
163 msleep(100);
164
165 /* stop the tracing. */
166 tracing_stop();
167 ftrace_enabled = 0;
168
169 /* check the trace buffer */
170 ret = trace_test_buffer(tr, &count);
171 trace->reset(tr);
172 tracing_start();
173
174 /* we should only have one item */
175 if (!ret && count != 1) {
176 printk(KERN_CONT ".. filter failed count=%ld ..", count);
177 ret = -1;
178 goto out;
179 }
180
181 out:
182 ftrace_enabled = save_ftrace_enabled;
183 tracer_enabled = save_tracer_enabled;
184
185 /* Enable tracing on all functions again */
186 ftrace_set_filter(NULL, 0, 1);
187
188 return ret;
189 }
190 #else
191 # define trace_selftest_startup_dynamic_tracing(trace, tr, func) ({ 0; })
192 #endif /* CONFIG_DYNAMIC_FTRACE */
193
194 /*
195 * Simple verification test of ftrace function tracer.
196 * Enable ftrace, sleep 1/10 second, and then read the trace
197 * buffer to see if all is in order.
198 */
199 int
200 trace_selftest_startup_function(struct tracer *trace, struct trace_array *tr)
201 {
202 int save_ftrace_enabled = ftrace_enabled;
203 int save_tracer_enabled = tracer_enabled;
204 unsigned long count;
205 int ret;
206
207 /* make sure msleep has been recorded */
208 msleep(1);
209
210 /* start the tracing */
211 ftrace_enabled = 1;
212 tracer_enabled = 1;
213
214 ret = tracer_init(trace, tr);
215 if (ret) {
216 warn_failed_init_tracer(trace, ret);
217 goto out;
218 }
219
220 /* Sleep for a 1/10 of a second */
221 msleep(100);
222 /* stop the tracing. */
223 tracing_stop();
224 ftrace_enabled = 0;
225
226 /* check the trace buffer */
227 ret = trace_test_buffer(tr, &count);
228 trace->reset(tr);
229 tracing_start();
230
231 if (!ret && !count) {
232 printk(KERN_CONT ".. no entries found ..");
233 ret = -1;
234 goto out;
235 }
236
237 ret = trace_selftest_startup_dynamic_tracing(trace, tr,
238 DYN_FTRACE_TEST_NAME);
239
240 out:
241 ftrace_enabled = save_ftrace_enabled;
242 tracer_enabled = save_tracer_enabled;
243
244 /* kill ftrace totally if we failed */
245 if (ret)
246 ftrace_kill();
247
248 return ret;
249 }
250 #endif /* CONFIG_FUNCTION_TRACER */
251
252
253 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
254
255 /* Maximum number of functions to trace before diagnosing a hang */
256 #define GRAPH_MAX_FUNC_TEST 100000000
257
258 static void __ftrace_dump(bool disable_tracing);
259 static unsigned int graph_hang_thresh;
260
261 /* Wrap the real function entry probe to avoid possible hanging */
262 static int trace_graph_entry_watchdog(struct ftrace_graph_ent *trace)
263 {
264 /* This is harmlessly racy, we want to approximately detect a hang */
265 if (unlikely(++graph_hang_thresh > GRAPH_MAX_FUNC_TEST)) {
266 ftrace_graph_stop();
267 printk(KERN_WARNING "BUG: Function graph tracer hang!\n");
268 if (ftrace_dump_on_oops)
269 __ftrace_dump(false);
270 return 0;
271 }
272
273 return trace_graph_entry(trace);
274 }
275
276 /*
277 * Pretty much the same than for the function tracer from which the selftest
278 * has been borrowed.
279 */
280 int
281 trace_selftest_startup_function_graph(struct tracer *trace,
282 struct trace_array *tr)
283 {
284 int ret;
285 unsigned long count;
286
287 /*
288 * Simulate the init() callback but we attach a watchdog callback
289 * to detect and recover from possible hangs
290 */
291 tracing_reset_online_cpus(tr);
292 ret = register_ftrace_graph(&trace_graph_return,
293 &trace_graph_entry_watchdog);
294 if (ret) {
295 warn_failed_init_tracer(trace, ret);
296 goto out;
297 }
298 tracing_start_cmdline_record();
299
300 /* Sleep for a 1/10 of a second */
301 msleep(100);
302
303 /* Have we just recovered from a hang? */
304 if (graph_hang_thresh > GRAPH_MAX_FUNC_TEST) {
305 tracing_selftest_disabled = true;
306 ret = -1;
307 goto out;
308 }
309
310 tracing_stop();
311
312 /* check the trace buffer */
313 ret = trace_test_buffer(tr, &count);
314
315 trace->reset(tr);
316 tracing_start();
317
318 if (!ret && !count) {
319 printk(KERN_CONT ".. no entries found ..");
320 ret = -1;
321 goto out;
322 }
323
324 /* Don't test dynamic tracing, the function tracer already did */
325
326 out:
327 /* Stop it if we failed */
328 if (ret)
329 ftrace_graph_stop();
330
331 return ret;
332 }
333 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
334
335
336 #ifdef CONFIG_IRQSOFF_TRACER
337 int
338 trace_selftest_startup_irqsoff(struct tracer *trace, struct trace_array *tr)
339 {
340 unsigned long save_max = tracing_max_latency;
341 unsigned long count;
342 int ret;
343
344 /* start the tracing */
345 ret = tracer_init(trace, tr);
346 if (ret) {
347 warn_failed_init_tracer(trace, ret);
348 return ret;
349 }
350
351 /* reset the max latency */
352 tracing_max_latency = 0;
353 /* disable interrupts for a bit */
354 local_irq_disable();
355 udelay(100);
356 local_irq_enable();
357
358 /*
359 * Stop the tracer to avoid a warning subsequent
360 * to buffer flipping failure because tracing_stop()
361 * disables the tr and max buffers, making flipping impossible
362 * in case of parallels max irqs off latencies.
363 */
364 trace->stop(tr);
365 /* stop the tracing. */
366 tracing_stop();
367 /* check both trace buffers */
368 ret = trace_test_buffer(tr, NULL);
369 if (!ret)
370 ret = trace_test_buffer(&max_tr, &count);
371 trace->reset(tr);
372 tracing_start();
373
374 if (!ret && !count) {
375 printk(KERN_CONT ".. no entries found ..");
376 ret = -1;
377 }
378
379 tracing_max_latency = save_max;
380
381 return ret;
382 }
383 #endif /* CONFIG_IRQSOFF_TRACER */
384
385 #ifdef CONFIG_PREEMPT_TRACER
386 int
387 trace_selftest_startup_preemptoff(struct tracer *trace, struct trace_array *tr)
388 {
389 unsigned long save_max = tracing_max_latency;
390 unsigned long count;
391 int ret;
392
393 /*
394 * Now that the big kernel lock is no longer preemptable,
395 * and this is called with the BKL held, it will always
396 * fail. If preemption is already disabled, simply
397 * pass the test. When the BKL is removed, or becomes
398 * preemptible again, we will once again test this,
399 * so keep it in.
400 */
401 if (preempt_count()) {
402 printk(KERN_CONT "can not test ... force ");
403 return 0;
404 }
405
406 /* start the tracing */
407 ret = tracer_init(trace, tr);
408 if (ret) {
409 warn_failed_init_tracer(trace, ret);
410 return ret;
411 }
412
413 /* reset the max latency */
414 tracing_max_latency = 0;
415 /* disable preemption for a bit */
416 preempt_disable();
417 udelay(100);
418 preempt_enable();
419
420 /*
421 * Stop the tracer to avoid a warning subsequent
422 * to buffer flipping failure because tracing_stop()
423 * disables the tr and max buffers, making flipping impossible
424 * in case of parallels max preempt off latencies.
425 */
426 trace->stop(tr);
427 /* stop the tracing. */
428 tracing_stop();
429 /* check both trace buffers */
430 ret = trace_test_buffer(tr, NULL);
431 if (!ret)
432 ret = trace_test_buffer(&max_tr, &count);
433 trace->reset(tr);
434 tracing_start();
435
436 if (!ret && !count) {
437 printk(KERN_CONT ".. no entries found ..");
438 ret = -1;
439 }
440
441 tracing_max_latency = save_max;
442
443 return ret;
444 }
445 #endif /* CONFIG_PREEMPT_TRACER */
446
447 #if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
448 int
449 trace_selftest_startup_preemptirqsoff(struct tracer *trace, struct trace_array *tr)
450 {
451 unsigned long save_max = tracing_max_latency;
452 unsigned long count;
453 int ret;
454
455 /*
456 * Now that the big kernel lock is no longer preemptable,
457 * and this is called with the BKL held, it will always
458 * fail. If preemption is already disabled, simply
459 * pass the test. When the BKL is removed, or becomes
460 * preemptible again, we will once again test this,
461 * so keep it in.
462 */
463 if (preempt_count()) {
464 printk(KERN_CONT "can not test ... force ");
465 return 0;
466 }
467
468 /* start the tracing */
469 ret = tracer_init(trace, tr);
470 if (ret) {
471 warn_failed_init_tracer(trace, ret);
472 goto out_no_start;
473 }
474
475 /* reset the max latency */
476 tracing_max_latency = 0;
477
478 /* disable preemption and interrupts for a bit */
479 preempt_disable();
480 local_irq_disable();
481 udelay(100);
482 preempt_enable();
483 /* reverse the order of preempt vs irqs */
484 local_irq_enable();
485
486 /*
487 * Stop the tracer to avoid a warning subsequent
488 * to buffer flipping failure because tracing_stop()
489 * disables the tr and max buffers, making flipping impossible
490 * in case of parallels max irqs/preempt off latencies.
491 */
492 trace->stop(tr);
493 /* stop the tracing. */
494 tracing_stop();
495 /* check both trace buffers */
496 ret = trace_test_buffer(tr, NULL);
497 if (ret)
498 goto out;
499
500 ret = trace_test_buffer(&max_tr, &count);
501 if (ret)
502 goto out;
503
504 if (!ret && !count) {
505 printk(KERN_CONT ".. no entries found ..");
506 ret = -1;
507 goto out;
508 }
509
510 /* do the test by disabling interrupts first this time */
511 tracing_max_latency = 0;
512 tracing_start();
513 trace->start(tr);
514
515 preempt_disable();
516 local_irq_disable();
517 udelay(100);
518 preempt_enable();
519 /* reverse the order of preempt vs irqs */
520 local_irq_enable();
521
522 trace->stop(tr);
523 /* stop the tracing. */
524 tracing_stop();
525 /* check both trace buffers */
526 ret = trace_test_buffer(tr, NULL);
527 if (ret)
528 goto out;
529
530 ret = trace_test_buffer(&max_tr, &count);
531
532 if (!ret && !count) {
533 printk(KERN_CONT ".. no entries found ..");
534 ret = -1;
535 goto out;
536 }
537
538 out:
539 tracing_start();
540 out_no_start:
541 trace->reset(tr);
542 tracing_max_latency = save_max;
543
544 return ret;
545 }
546 #endif /* CONFIG_IRQSOFF_TRACER && CONFIG_PREEMPT_TRACER */
547
548 #ifdef CONFIG_NOP_TRACER
549 int
550 trace_selftest_startup_nop(struct tracer *trace, struct trace_array *tr)
551 {
552 /* What could possibly go wrong? */
553 return 0;
554 }
555 #endif
556
557 #ifdef CONFIG_SCHED_TRACER
558 static int trace_wakeup_test_thread(void *data)
559 {
560 /* Make this a RT thread, doesn't need to be too high */
561 struct sched_param param = { .sched_priority = 5 };
562 struct completion *x = data;
563
564 sched_setscheduler(current, SCHED_FIFO, &param);
565
566 /* Make it know we have a new prio */
567 complete(x);
568
569 /* now go to sleep and let the test wake us up */
570 set_current_state(TASK_INTERRUPTIBLE);
571 schedule();
572
573 /* we are awake, now wait to disappear */
574 while (!kthread_should_stop()) {
575 /*
576 * This is an RT task, do short sleeps to let
577 * others run.
578 */
579 msleep(100);
580 }
581
582 return 0;
583 }
584
585 int
586 trace_selftest_startup_wakeup(struct tracer *trace, struct trace_array *tr)
587 {
588 unsigned long save_max = tracing_max_latency;
589 struct task_struct *p;
590 struct completion isrt;
591 unsigned long count;
592 int ret;
593
594 init_completion(&isrt);
595
596 /* create a high prio thread */
597 p = kthread_run(trace_wakeup_test_thread, &isrt, "ftrace-test");
598 if (IS_ERR(p)) {
599 printk(KERN_CONT "Failed to create ftrace wakeup test thread ");
600 return -1;
601 }
602
603 /* make sure the thread is running at an RT prio */
604 wait_for_completion(&isrt);
605
606 /* start the tracing */
607 ret = tracer_init(trace, tr);
608 if (ret) {
609 warn_failed_init_tracer(trace, ret);
610 return ret;
611 }
612
613 /* reset the max latency */
614 tracing_max_latency = 0;
615
616 /* sleep to let the RT thread sleep too */
617 msleep(100);
618
619 /*
620 * Yes this is slightly racy. It is possible that for some
621 * strange reason that the RT thread we created, did not
622 * call schedule for 100ms after doing the completion,
623 * and we do a wakeup on a task that already is awake.
624 * But that is extremely unlikely, and the worst thing that
625 * happens in such a case, is that we disable tracing.
626 * Honestly, if this race does happen something is horrible
627 * wrong with the system.
628 */
629
630 wake_up_process(p);
631
632 /* give a little time to let the thread wake up */
633 msleep(100);
634
635 /* stop the tracing. */
636 tracing_stop();
637 /* check both trace buffers */
638 ret = trace_test_buffer(tr, NULL);
639 if (!ret)
640 ret = trace_test_buffer(&max_tr, &count);
641
642
643 trace->reset(tr);
644 tracing_start();
645
646 tracing_max_latency = save_max;
647
648 /* kill the thread */
649 kthread_stop(p);
650
651 if (!ret && !count) {
652 printk(KERN_CONT ".. no entries found ..");
653 ret = -1;
654 }
655
656 return ret;
657 }
658 #endif /* CONFIG_SCHED_TRACER */
659
660 #ifdef CONFIG_CONTEXT_SWITCH_TRACER
661 int
662 trace_selftest_startup_sched_switch(struct tracer *trace, struct trace_array *tr)
663 {
664 unsigned long count;
665 int ret;
666
667 /* start the tracing */
668 ret = tracer_init(trace, tr);
669 if (ret) {
670 warn_failed_init_tracer(trace, ret);
671 return ret;
672 }
673
674 /* Sleep for a 1/10 of a second */
675 msleep(100);
676 /* stop the tracing. */
677 tracing_stop();
678 /* check the trace buffer */
679 ret = trace_test_buffer(tr, &count);
680 trace->reset(tr);
681 tracing_start();
682
683 if (!ret && !count) {
684 printk(KERN_CONT ".. no entries found ..");
685 ret = -1;
686 }
687
688 return ret;
689 }
690 #endif /* CONFIG_CONTEXT_SWITCH_TRACER */
691
692 #ifdef CONFIG_SYSPROF_TRACER
693 int
694 trace_selftest_startup_sysprof(struct tracer *trace, struct trace_array *tr)
695 {
696 unsigned long count;
697 int ret;
698
699 /* start the tracing */
700 ret = tracer_init(trace, tr);
701 if (ret) {
702 warn_failed_init_tracer(trace, ret);
703 return ret;
704 }
705
706 /* Sleep for a 1/10 of a second */
707 msleep(100);
708 /* stop the tracing. */
709 tracing_stop();
710 /* check the trace buffer */
711 ret = trace_test_buffer(tr, &count);
712 trace->reset(tr);
713 tracing_start();
714
715 if (!ret && !count) {
716 printk(KERN_CONT ".. no entries found ..");
717 ret = -1;
718 }
719
720 return ret;
721 }
722 #endif /* CONFIG_SYSPROF_TRACER */
723
724 #ifdef CONFIG_BRANCH_TRACER
725 int
726 trace_selftest_startup_branch(struct tracer *trace, struct trace_array *tr)
727 {
728 unsigned long count;
729 int ret;
730
731 /* start the tracing */
732 ret = tracer_init(trace, tr);
733 if (ret) {
734 warn_failed_init_tracer(trace, ret);
735 return ret;
736 }
737
738 /* Sleep for a 1/10 of a second */
739 msleep(100);
740 /* stop the tracing. */
741 tracing_stop();
742 /* check the trace buffer */
743 ret = trace_test_buffer(tr, &count);
744 trace->reset(tr);
745 tracing_start();
746
747 if (!ret && !count) {
748 printk(KERN_CONT ".. no entries found ..");
749 ret = -1;
750 }
751
752 return ret;
753 }
754 #endif /* CONFIG_BRANCH_TRACER */
755
756 #ifdef CONFIG_HW_BRANCH_TRACER
757 int
758 trace_selftest_startup_hw_branches(struct tracer *trace,
759 struct trace_array *tr)
760 {
761 struct trace_iterator *iter;
762 struct tracer tracer;
763 unsigned long count;
764 int ret;
765
766 if (!trace->open) {
767 printk(KERN_CONT "missing open function...");
768 return -1;
769 }
770
771 ret = tracer_init(trace, tr);
772 if (ret) {
773 warn_failed_init_tracer(trace, ret);
774 return ret;
775 }
776
777 /*
778 * The hw-branch tracer needs to collect the trace from the various
779 * cpu trace buffers - before tracing is stopped.
780 */
781 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
782 if (!iter)
783 return -ENOMEM;
784
785 memcpy(&tracer, trace, sizeof(tracer));
786
787 iter->trace = &tracer;
788 iter->tr = tr;
789 iter->pos = -1;
790 mutex_init(&iter->mutex);
791
792 trace->open(iter);
793
794 mutex_destroy(&iter->mutex);
795 kfree(iter);
796
797 tracing_stop();
798
799 ret = trace_test_buffer(tr, &count);
800 trace->reset(tr);
801 tracing_start();
802
803 if (!ret && !count) {
804 printk(KERN_CONT "no entries found..");
805 ret = -1;
806 }
807
808 return ret;
809 }
810 #endif /* CONFIG_HW_BRANCH_TRACER */
811
812 #ifdef CONFIG_KSYM_TRACER
813 static int ksym_selftest_dummy;
814
815 int
816 trace_selftest_startup_ksym(struct tracer *trace, struct trace_array *tr)
817 {
818 unsigned long count;
819 int ret;
820
821 /* start the tracing */
822 ret = tracer_init(trace, tr);
823 if (ret) {
824 warn_failed_init_tracer(trace, ret);
825 return ret;
826 }
827
828 ksym_selftest_dummy = 0;
829 /* Register the read-write tracing request */
830 ret = process_new_ksym_entry(KSYM_SELFTEST_ENTRY, HW_BREAKPOINT_RW,
831 (unsigned long)(&ksym_selftest_dummy));
832
833 if (ret < 0) {
834 printk(KERN_CONT "ksym_trace read-write startup test failed\n");
835 goto ret_path;
836 }
837 /* Perform a read and a write operation over the dummy variable to
838 * trigger the tracer
839 */
840 if (ksym_selftest_dummy == 0)
841 ksym_selftest_dummy++;
842
843 /* stop the tracing. */
844 tracing_stop();
845 /* check the trace buffer */
846 ret = trace_test_buffer(tr, &count);
847 trace->reset(tr);
848 tracing_start();
849
850 /* read & write operations - one each is performed on the dummy variable
851 * triggering two entries in the trace buffer
852 */
853 if (!ret && count != 2) {
854 printk(KERN_CONT "Ksym tracer startup test failed");
855 ret = -1;
856 }
857
858 ret_path:
859 return ret;
860 }
861 #endif /* CONFIG_KSYM_TRACER */
862
This page took 0.05983 seconds and 6 git commands to generate.