diff options
Diffstat (limited to 'kernel/trace/trace_events.c')
-rw-r--r-- | kernel/trace/trace_events.c | 839 |
1 files changed, 700 insertions, 139 deletions
diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c index 576f4fa2af0d..aa08be69a1b6 100644 --- a/kernel/trace/trace_events.c +++ b/kernel/trace/trace_events.c | |||
@@ -8,19 +8,25 @@ | |||
8 | * | 8 | * |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <linux/workqueue.h> | ||
12 | #include <linux/spinlock.h> | ||
13 | #include <linux/kthread.h> | ||
11 | #include <linux/debugfs.h> | 14 | #include <linux/debugfs.h> |
12 | #include <linux/uaccess.h> | 15 | #include <linux/uaccess.h> |
13 | #include <linux/module.h> | 16 | #include <linux/module.h> |
14 | #include <linux/ctype.h> | 17 | #include <linux/ctype.h> |
18 | #include <linux/delay.h> | ||
15 | 19 | ||
16 | #include "trace_output.h" | 20 | #include "trace_output.h" |
17 | 21 | ||
18 | #define TRACE_SYSTEM "TRACE_SYSTEM" | 22 | #define TRACE_SYSTEM "TRACE_SYSTEM" |
19 | 23 | ||
20 | static DEFINE_MUTEX(event_mutex); | 24 | DEFINE_MUTEX(event_mutex); |
25 | |||
26 | LIST_HEAD(ftrace_events); | ||
21 | 27 | ||
22 | int trace_define_field(struct ftrace_event_call *call, char *type, | 28 | int trace_define_field(struct ftrace_event_call *call, char *type, |
23 | char *name, int offset, int size) | 29 | char *name, int offset, int size, int is_signed) |
24 | { | 30 | { |
25 | struct ftrace_event_field *field; | 31 | struct ftrace_event_field *field; |
26 | 32 | ||
@@ -38,6 +44,7 @@ int trace_define_field(struct ftrace_event_call *call, char *type, | |||
38 | 44 | ||
39 | field->offset = offset; | 45 | field->offset = offset; |
40 | field->size = size; | 46 | field->size = size; |
47 | field->is_signed = is_signed; | ||
41 | list_add(&field->link, &call->fields); | 48 | list_add(&field->link, &call->fields); |
42 | 49 | ||
43 | return 0; | 50 | return 0; |
@@ -51,47 +58,94 @@ err: | |||
51 | 58 | ||
52 | return -ENOMEM; | 59 | return -ENOMEM; |
53 | } | 60 | } |
61 | EXPORT_SYMBOL_GPL(trace_define_field); | ||
54 | 62 | ||
55 | static void ftrace_clear_events(void) | 63 | #ifdef CONFIG_MODULES |
56 | { | ||
57 | struct ftrace_event_call *call = (void *)__start_ftrace_events; | ||
58 | |||
59 | 64 | ||
60 | while ((unsigned long)call < (unsigned long)__stop_ftrace_events) { | 65 | static void trace_destroy_fields(struct ftrace_event_call *call) |
66 | { | ||
67 | struct ftrace_event_field *field, *next; | ||
61 | 68 | ||
62 | if (call->enabled) { | 69 | list_for_each_entry_safe(field, next, &call->fields, link) { |
63 | call->enabled = 0; | 70 | list_del(&field->link); |
64 | call->unregfunc(); | 71 | kfree(field->type); |
65 | } | 72 | kfree(field->name); |
66 | call++; | 73 | kfree(field); |
67 | } | 74 | } |
68 | } | 75 | } |
69 | 76 | ||
77 | #endif /* CONFIG_MODULES */ | ||
78 | |||
70 | static void ftrace_event_enable_disable(struct ftrace_event_call *call, | 79 | static void ftrace_event_enable_disable(struct ftrace_event_call *call, |
71 | int enable) | 80 | int enable) |
72 | { | 81 | { |
73 | |||
74 | switch (enable) { | 82 | switch (enable) { |
75 | case 0: | 83 | case 0: |
76 | if (call->enabled) { | 84 | if (call->enabled) { |
77 | call->enabled = 0; | 85 | call->enabled = 0; |
86 | tracing_stop_cmdline_record(); | ||
78 | call->unregfunc(); | 87 | call->unregfunc(); |
79 | } | 88 | } |
80 | break; | 89 | break; |
81 | case 1: | 90 | case 1: |
82 | if (!call->enabled) { | 91 | if (!call->enabled) { |
83 | call->enabled = 1; | 92 | call->enabled = 1; |
93 | tracing_start_cmdline_record(); | ||
84 | call->regfunc(); | 94 | call->regfunc(); |
85 | } | 95 | } |
86 | break; | 96 | break; |
87 | } | 97 | } |
88 | } | 98 | } |
89 | 99 | ||
100 | static void ftrace_clear_events(void) | ||
101 | { | ||
102 | struct ftrace_event_call *call; | ||
103 | |||
104 | mutex_lock(&event_mutex); | ||
105 | list_for_each_entry(call, &ftrace_events, list) { | ||
106 | ftrace_event_enable_disable(call, 0); | ||
107 | } | ||
108 | mutex_unlock(&event_mutex); | ||
109 | } | ||
110 | |||
111 | /* | ||
112 | * __ftrace_set_clr_event(NULL, NULL, NULL, set) will set/unset all events. | ||
113 | */ | ||
114 | static int __ftrace_set_clr_event(const char *match, const char *sub, | ||
115 | const char *event, int set) | ||
116 | { | ||
117 | struct ftrace_event_call *call; | ||
118 | int ret = -EINVAL; | ||
119 | |||
120 | mutex_lock(&event_mutex); | ||
121 | list_for_each_entry(call, &ftrace_events, list) { | ||
122 | |||
123 | if (!call->name || !call->regfunc) | ||
124 | continue; | ||
125 | |||
126 | if (match && | ||
127 | strcmp(match, call->name) != 0 && | ||
128 | strcmp(match, call->system) != 0) | ||
129 | continue; | ||
130 | |||
131 | if (sub && strcmp(sub, call->system) != 0) | ||
132 | continue; | ||
133 | |||
134 | if (event && strcmp(event, call->name) != 0) | ||
135 | continue; | ||
136 | |||
137 | ftrace_event_enable_disable(call, set); | ||
138 | |||
139 | ret = 0; | ||
140 | } | ||
141 | mutex_unlock(&event_mutex); | ||
142 | |||
143 | return ret; | ||
144 | } | ||
145 | |||
90 | static int ftrace_set_clr_event(char *buf, int set) | 146 | static int ftrace_set_clr_event(char *buf, int set) |
91 | { | 147 | { |
92 | struct ftrace_event_call *call = __start_ftrace_events; | ||
93 | char *event = NULL, *sub = NULL, *match; | 148 | char *event = NULL, *sub = NULL, *match; |
94 | int ret = -EINVAL; | ||
95 | 149 | ||
96 | /* | 150 | /* |
97 | * The buf format can be <subsystem>:<event-name> | 151 | * The buf format can be <subsystem>:<event-name> |
@@ -117,30 +171,24 @@ static int ftrace_set_clr_event(char *buf, int set) | |||
117 | event = NULL; | 171 | event = NULL; |
118 | } | 172 | } |
119 | 173 | ||
120 | mutex_lock(&event_mutex); | 174 | return __ftrace_set_clr_event(match, sub, event, set); |
121 | for_each_event(call) { | 175 | } |
122 | |||
123 | if (!call->name || !call->regfunc) | ||
124 | continue; | ||
125 | |||
126 | if (match && | ||
127 | strcmp(match, call->name) != 0 && | ||
128 | strcmp(match, call->system) != 0) | ||
129 | continue; | ||
130 | |||
131 | if (sub && strcmp(sub, call->system) != 0) | ||
132 | continue; | ||
133 | |||
134 | if (event && strcmp(event, call->name) != 0) | ||
135 | continue; | ||
136 | |||
137 | ftrace_event_enable_disable(call, set); | ||
138 | |||
139 | ret = 0; | ||
140 | } | ||
141 | mutex_unlock(&event_mutex); | ||
142 | 176 | ||
143 | return ret; | 177 | /** |
178 | * trace_set_clr_event - enable or disable an event | ||
179 | * @system: system name to match (NULL for any system) | ||
180 | * @event: event name to match (NULL for all events, within system) | ||
181 | * @set: 1 to enable, 0 to disable | ||
182 | * | ||
183 | * This is a way for other parts of the kernel to enable or disable | ||
184 | * event recording. | ||
185 | * | ||
186 | * Returns 0 on success, -EINVAL if the parameters do not match any | ||
187 | * registered events. | ||
188 | */ | ||
189 | int trace_set_clr_event(const char *system, const char *event, int set) | ||
190 | { | ||
191 | return __ftrace_set_clr_event(NULL, system, event, set); | ||
144 | } | 192 | } |
145 | 193 | ||
146 | /* 128 should be much more than enough */ | 194 | /* 128 should be much more than enough */ |
@@ -224,15 +272,17 @@ ftrace_event_write(struct file *file, const char __user *ubuf, | |||
224 | static void * | 272 | static void * |
225 | t_next(struct seq_file *m, void *v, loff_t *pos) | 273 | t_next(struct seq_file *m, void *v, loff_t *pos) |
226 | { | 274 | { |
227 | struct ftrace_event_call *call = m->private; | 275 | struct list_head *list = m->private; |
228 | struct ftrace_event_call *next = call; | 276 | struct ftrace_event_call *call; |
229 | 277 | ||
230 | (*pos)++; | 278 | (*pos)++; |
231 | 279 | ||
232 | for (;;) { | 280 | for (;;) { |
233 | if ((unsigned long)call >= (unsigned long)__stop_ftrace_events) | 281 | if (list == &ftrace_events) |
234 | return NULL; | 282 | return NULL; |
235 | 283 | ||
284 | call = list_entry(list, struct ftrace_event_call, list); | ||
285 | |||
236 | /* | 286 | /* |
237 | * The ftrace subsystem is for showing formats only. | 287 | * The ftrace subsystem is for showing formats only. |
238 | * They can not be enabled or disabled via the event files. | 288 | * They can not be enabled or disabled via the event files. |
@@ -240,45 +290,51 @@ t_next(struct seq_file *m, void *v, loff_t *pos) | |||
240 | if (call->regfunc) | 290 | if (call->regfunc) |
241 | break; | 291 | break; |
242 | 292 | ||
243 | call++; | 293 | list = list->next; |
244 | next = call; | ||
245 | } | 294 | } |
246 | 295 | ||
247 | m->private = ++next; | 296 | m->private = list->next; |
248 | 297 | ||
249 | return call; | 298 | return call; |
250 | } | 299 | } |
251 | 300 | ||
252 | static void *t_start(struct seq_file *m, loff_t *pos) | 301 | static void *t_start(struct seq_file *m, loff_t *pos) |
253 | { | 302 | { |
303 | mutex_lock(&event_mutex); | ||
304 | if (*pos == 0) | ||
305 | m->private = ftrace_events.next; | ||
254 | return t_next(m, NULL, pos); | 306 | return t_next(m, NULL, pos); |
255 | } | 307 | } |
256 | 308 | ||
257 | static void * | 309 | static void * |
258 | s_next(struct seq_file *m, void *v, loff_t *pos) | 310 | s_next(struct seq_file *m, void *v, loff_t *pos) |
259 | { | 311 | { |
260 | struct ftrace_event_call *call = m->private; | 312 | struct list_head *list = m->private; |
261 | struct ftrace_event_call *next; | 313 | struct ftrace_event_call *call; |
262 | 314 | ||
263 | (*pos)++; | 315 | (*pos)++; |
264 | 316 | ||
265 | retry: | 317 | retry: |
266 | if ((unsigned long)call >= (unsigned long)__stop_ftrace_events) | 318 | if (list == &ftrace_events) |
267 | return NULL; | 319 | return NULL; |
268 | 320 | ||
321 | call = list_entry(list, struct ftrace_event_call, list); | ||
322 | |||
269 | if (!call->enabled) { | 323 | if (!call->enabled) { |
270 | call++; | 324 | list = list->next; |
271 | goto retry; | 325 | goto retry; |
272 | } | 326 | } |
273 | 327 | ||
274 | next = call; | 328 | m->private = list->next; |
275 | m->private = ++next; | ||
276 | 329 | ||
277 | return call; | 330 | return call; |
278 | } | 331 | } |
279 | 332 | ||
280 | static void *s_start(struct seq_file *m, loff_t *pos) | 333 | static void *s_start(struct seq_file *m, loff_t *pos) |
281 | { | 334 | { |
335 | mutex_lock(&event_mutex); | ||
336 | if (*pos == 0) | ||
337 | m->private = ftrace_events.next; | ||
282 | return s_next(m, NULL, pos); | 338 | return s_next(m, NULL, pos); |
283 | } | 339 | } |
284 | 340 | ||
@@ -295,12 +351,12 @@ static int t_show(struct seq_file *m, void *v) | |||
295 | 351 | ||
296 | static void t_stop(struct seq_file *m, void *p) | 352 | static void t_stop(struct seq_file *m, void *p) |
297 | { | 353 | { |
354 | mutex_unlock(&event_mutex); | ||
298 | } | 355 | } |
299 | 356 | ||
300 | static int | 357 | static int |
301 | ftrace_event_seq_open(struct inode *inode, struct file *file) | 358 | ftrace_event_seq_open(struct inode *inode, struct file *file) |
302 | { | 359 | { |
303 | int ret; | ||
304 | const struct seq_operations *seq_ops; | 360 | const struct seq_operations *seq_ops; |
305 | 361 | ||
306 | if ((file->f_mode & FMODE_WRITE) && | 362 | if ((file->f_mode & FMODE_WRITE) && |
@@ -308,13 +364,7 @@ ftrace_event_seq_open(struct inode *inode, struct file *file) | |||
308 | ftrace_clear_events(); | 364 | ftrace_clear_events(); |
309 | 365 | ||
310 | seq_ops = inode->i_private; | 366 | seq_ops = inode->i_private; |
311 | ret = seq_open(file, seq_ops); | 367 | return seq_open(file, seq_ops); |
312 | if (!ret) { | ||
313 | struct seq_file *m = file->private_data; | ||
314 | |||
315 | m->private = __start_ftrace_events; | ||
316 | } | ||
317 | return ret; | ||
318 | } | 368 | } |
319 | 369 | ||
320 | static ssize_t | 370 | static ssize_t |
@@ -374,8 +424,93 @@ event_enable_write(struct file *filp, const char __user *ubuf, size_t cnt, | |||
374 | return cnt; | 424 | return cnt; |
375 | } | 425 | } |
376 | 426 | ||
427 | static ssize_t | ||
428 | system_enable_read(struct file *filp, char __user *ubuf, size_t cnt, | ||
429 | loff_t *ppos) | ||
430 | { | ||
431 | const char set_to_char[4] = { '?', '0', '1', 'X' }; | ||
432 | const char *system = filp->private_data; | ||
433 | struct ftrace_event_call *call; | ||
434 | char buf[2]; | ||
435 | int set = 0; | ||
436 | int ret; | ||
437 | |||
438 | mutex_lock(&event_mutex); | ||
439 | list_for_each_entry(call, &ftrace_events, list) { | ||
440 | if (!call->name || !call->regfunc) | ||
441 | continue; | ||
442 | |||
443 | if (system && strcmp(call->system, system) != 0) | ||
444 | continue; | ||
445 | |||
446 | /* | ||
447 | * We need to find out if all the events are set | ||
448 | * or if all events or cleared, or if we have | ||
449 | * a mixture. | ||
450 | */ | ||
451 | set |= (1 << !!call->enabled); | ||
452 | |||
453 | /* | ||
454 | * If we have a mixture, no need to look further. | ||
455 | */ | ||
456 | if (set == 3) | ||
457 | break; | ||
458 | } | ||
459 | mutex_unlock(&event_mutex); | ||
460 | |||
461 | buf[0] = set_to_char[set]; | ||
462 | buf[1] = '\n'; | ||
463 | |||
464 | ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, 2); | ||
465 | |||
466 | return ret; | ||
467 | } | ||
468 | |||
469 | static ssize_t | ||
470 | system_enable_write(struct file *filp, const char __user *ubuf, size_t cnt, | ||
471 | loff_t *ppos) | ||
472 | { | ||
473 | const char *system = filp->private_data; | ||
474 | unsigned long val; | ||
475 | char buf[64]; | ||
476 | ssize_t ret; | ||
477 | |||
478 | if (cnt >= sizeof(buf)) | ||
479 | return -EINVAL; | ||
480 | |||
481 | if (copy_from_user(&buf, ubuf, cnt)) | ||
482 | return -EFAULT; | ||
483 | |||
484 | buf[cnt] = 0; | ||
485 | |||
486 | ret = strict_strtoul(buf, 10, &val); | ||
487 | if (ret < 0) | ||
488 | return ret; | ||
489 | |||
490 | ret = tracing_update_buffers(); | ||
491 | if (ret < 0) | ||
492 | return ret; | ||
493 | |||
494 | if (val != 0 && val != 1) | ||
495 | return -EINVAL; | ||
496 | |||
497 | ret = __ftrace_set_clr_event(NULL, system, NULL, val); | ||
498 | if (ret) | ||
499 | goto out; | ||
500 | |||
501 | ret = cnt; | ||
502 | |||
503 | out: | ||
504 | *ppos += cnt; | ||
505 | |||
506 | return ret; | ||
507 | } | ||
508 | |||
509 | extern char *__bad_type_size(void); | ||
510 | |||
377 | #undef FIELD | 511 | #undef FIELD |
378 | #define FIELD(type, name) \ | 512 | #define FIELD(type, name) \ |
513 | sizeof(type) != sizeof(field.name) ? __bad_type_size() : \ | ||
379 | #type, "common_" #name, offsetof(typeof(field), name), \ | 514 | #type, "common_" #name, offsetof(typeof(field), name), \ |
380 | sizeof(field.name) | 515 | sizeof(field.name) |
381 | 516 | ||
@@ -391,7 +526,7 @@ static int trace_write_header(struct trace_seq *s) | |||
391 | "\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n" | 526 | "\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n" |
392 | "\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n" | 527 | "\tfield:%s %s;\toffset:%zu;\tsize:%zu;\n" |
393 | "\n", | 528 | "\n", |
394 | FIELD(unsigned char, type), | 529 | FIELD(unsigned short, type), |
395 | FIELD(unsigned char, flags), | 530 | FIELD(unsigned char, flags), |
396 | FIELD(unsigned char, preempt_count), | 531 | FIELD(unsigned char, preempt_count), |
397 | FIELD(int, pid), | 532 | FIELD(int, pid), |
@@ -481,7 +616,7 @@ event_filter_read(struct file *filp, char __user *ubuf, size_t cnt, | |||
481 | 616 | ||
482 | trace_seq_init(s); | 617 | trace_seq_init(s); |
483 | 618 | ||
484 | filter_print_preds(call->preds, s); | 619 | print_event_filter(call, s); |
485 | r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len); | 620 | r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len); |
486 | 621 | ||
487 | kfree(s); | 622 | kfree(s); |
@@ -494,38 +629,26 @@ event_filter_write(struct file *filp, const char __user *ubuf, size_t cnt, | |||
494 | loff_t *ppos) | 629 | loff_t *ppos) |
495 | { | 630 | { |
496 | struct ftrace_event_call *call = filp->private_data; | 631 | struct ftrace_event_call *call = filp->private_data; |
497 | char buf[64], *pbuf = buf; | 632 | char *buf; |
498 | struct filter_pred *pred; | ||
499 | int err; | 633 | int err; |
500 | 634 | ||
501 | if (cnt >= sizeof(buf)) | 635 | if (cnt >= PAGE_SIZE) |
502 | return -EINVAL; | 636 | return -EINVAL; |
503 | 637 | ||
504 | if (copy_from_user(&buf, ubuf, cnt)) | 638 | buf = (char *)__get_free_page(GFP_TEMPORARY); |
505 | return -EFAULT; | 639 | if (!buf) |
506 | buf[cnt] = '\0'; | ||
507 | |||
508 | pred = kzalloc(sizeof(*pred), GFP_KERNEL); | ||
509 | if (!pred) | ||
510 | return -ENOMEM; | 640 | return -ENOMEM; |
511 | 641 | ||
512 | err = filter_parse(&pbuf, pred); | 642 | if (copy_from_user(buf, ubuf, cnt)) { |
513 | if (err < 0) { | 643 | free_page((unsigned long) buf); |
514 | filter_free_pred(pred); | 644 | return -EFAULT; |
515 | return err; | ||
516 | } | ||
517 | |||
518 | if (pred->clear) { | ||
519 | filter_free_preds(call); | ||
520 | filter_free_pred(pred); | ||
521 | return cnt; | ||
522 | } | 645 | } |
646 | buf[cnt] = '\0'; | ||
523 | 647 | ||
524 | err = filter_add_pred(call, pred); | 648 | err = apply_event_filter(call, buf); |
525 | if (err < 0) { | 649 | free_page((unsigned long) buf); |
526 | filter_free_pred(pred); | 650 | if (err < 0) |
527 | return err; | 651 | return err; |
528 | } | ||
529 | 652 | ||
530 | *ppos += cnt; | 653 | *ppos += cnt; |
531 | 654 | ||
@@ -549,7 +672,7 @@ subsystem_filter_read(struct file *filp, char __user *ubuf, size_t cnt, | |||
549 | 672 | ||
550 | trace_seq_init(s); | 673 | trace_seq_init(s); |
551 | 674 | ||
552 | filter_print_preds(system->preds, s); | 675 | print_subsystem_event_filter(system, s); |
553 | r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len); | 676 | r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len); |
554 | 677 | ||
555 | kfree(s); | 678 | kfree(s); |
@@ -562,45 +685,56 @@ subsystem_filter_write(struct file *filp, const char __user *ubuf, size_t cnt, | |||
562 | loff_t *ppos) | 685 | loff_t *ppos) |
563 | { | 686 | { |
564 | struct event_subsystem *system = filp->private_data; | 687 | struct event_subsystem *system = filp->private_data; |
565 | char buf[64], *pbuf = buf; | 688 | char *buf; |
566 | struct filter_pred *pred; | ||
567 | int err; | 689 | int err; |
568 | 690 | ||
569 | if (cnt >= sizeof(buf)) | 691 | if (cnt >= PAGE_SIZE) |
570 | return -EINVAL; | 692 | return -EINVAL; |
571 | 693 | ||
572 | if (copy_from_user(&buf, ubuf, cnt)) | 694 | buf = (char *)__get_free_page(GFP_TEMPORARY); |
573 | return -EFAULT; | 695 | if (!buf) |
574 | buf[cnt] = '\0'; | ||
575 | |||
576 | pred = kzalloc(sizeof(*pred), GFP_KERNEL); | ||
577 | if (!pred) | ||
578 | return -ENOMEM; | 696 | return -ENOMEM; |
579 | 697 | ||
580 | err = filter_parse(&pbuf, pred); | 698 | if (copy_from_user(buf, ubuf, cnt)) { |
581 | if (err < 0) { | 699 | free_page((unsigned long) buf); |
582 | filter_free_pred(pred); | 700 | return -EFAULT; |
583 | return err; | ||
584 | } | ||
585 | |||
586 | if (pred->clear) { | ||
587 | filter_free_subsystem_preds(system); | ||
588 | filter_free_pred(pred); | ||
589 | return cnt; | ||
590 | } | 701 | } |
702 | buf[cnt] = '\0'; | ||
591 | 703 | ||
592 | err = filter_add_subsystem_pred(system, pred); | 704 | err = apply_subsystem_event_filter(system, buf); |
593 | if (err < 0) { | 705 | free_page((unsigned long) buf); |
594 | filter_free_subsystem_preds(system); | 706 | if (err < 0) |
595 | filter_free_pred(pred); | ||
596 | return err; | 707 | return err; |
597 | } | ||
598 | 708 | ||
599 | *ppos += cnt; | 709 | *ppos += cnt; |
600 | 710 | ||
601 | return cnt; | 711 | return cnt; |
602 | } | 712 | } |
603 | 713 | ||
714 | static ssize_t | ||
715 | show_header(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos) | ||
716 | { | ||
717 | int (*func)(struct trace_seq *s) = filp->private_data; | ||
718 | struct trace_seq *s; | ||
719 | int r; | ||
720 | |||
721 | if (*ppos) | ||
722 | return 0; | ||
723 | |||
724 | s = kmalloc(sizeof(*s), GFP_KERNEL); | ||
725 | if (!s) | ||
726 | return -ENOMEM; | ||
727 | |||
728 | trace_seq_init(s); | ||
729 | |||
730 | func(s); | ||
731 | r = simple_read_from_buffer(ubuf, cnt, ppos, s->buffer, s->len); | ||
732 | |||
733 | kfree(s); | ||
734 | |||
735 | return r; | ||
736 | } | ||
737 | |||
604 | static const struct seq_operations show_event_seq_ops = { | 738 | static const struct seq_operations show_event_seq_ops = { |
605 | .start = t_start, | 739 | .start = t_start, |
606 | .next = t_next, | 740 | .next = t_next, |
@@ -658,6 +792,17 @@ static const struct file_operations ftrace_subsystem_filter_fops = { | |||
658 | .write = subsystem_filter_write, | 792 | .write = subsystem_filter_write, |
659 | }; | 793 | }; |
660 | 794 | ||
795 | static const struct file_operations ftrace_system_enable_fops = { | ||
796 | .open = tracing_open_generic, | ||
797 | .read = system_enable_read, | ||
798 | .write = system_enable_write, | ||
799 | }; | ||
800 | |||
801 | static const struct file_operations ftrace_show_header_fops = { | ||
802 | .open = tracing_open_generic, | ||
803 | .read = show_header, | ||
804 | }; | ||
805 | |||
661 | static struct dentry *event_trace_events_dir(void) | 806 | static struct dentry *event_trace_events_dir(void) |
662 | { | 807 | { |
663 | static struct dentry *d_tracer; | 808 | static struct dentry *d_tracer; |
@@ -684,6 +829,7 @@ static struct dentry * | |||
684 | event_subsystem_dir(const char *name, struct dentry *d_events) | 829 | event_subsystem_dir(const char *name, struct dentry *d_events) |
685 | { | 830 | { |
686 | struct event_subsystem *system; | 831 | struct event_subsystem *system; |
832 | struct dentry *entry; | ||
687 | 833 | ||
688 | /* First see if we did not already create this dir */ | 834 | /* First see if we did not already create this dir */ |
689 | list_for_each_entry(system, &event_subsystems, list) { | 835 | list_for_each_entry(system, &event_subsystems, list) { |
@@ -707,16 +853,46 @@ event_subsystem_dir(const char *name, struct dentry *d_events) | |||
707 | return d_events; | 853 | return d_events; |
708 | } | 854 | } |
709 | 855 | ||
710 | system->name = name; | 856 | system->name = kstrdup(name, GFP_KERNEL); |
857 | if (!system->name) { | ||
858 | debugfs_remove(system->entry); | ||
859 | kfree(system); | ||
860 | return d_events; | ||
861 | } | ||
862 | |||
711 | list_add(&system->list, &event_subsystems); | 863 | list_add(&system->list, &event_subsystems); |
712 | 864 | ||
713 | system->preds = NULL; | 865 | system->filter = NULL; |
866 | |||
867 | system->filter = kzalloc(sizeof(struct event_filter), GFP_KERNEL); | ||
868 | if (!system->filter) { | ||
869 | pr_warning("Could not allocate filter for subsystem " | ||
870 | "'%s'\n", name); | ||
871 | return system->entry; | ||
872 | } | ||
873 | |||
874 | entry = debugfs_create_file("filter", 0644, system->entry, system, | ||
875 | &ftrace_subsystem_filter_fops); | ||
876 | if (!entry) { | ||
877 | kfree(system->filter); | ||
878 | system->filter = NULL; | ||
879 | pr_warning("Could not create debugfs " | ||
880 | "'%s/filter' entry\n", name); | ||
881 | } | ||
882 | |||
883 | entry = trace_create_file("enable", 0644, system->entry, | ||
884 | (void *)system->name, | ||
885 | &ftrace_system_enable_fops); | ||
714 | 886 | ||
715 | return system->entry; | 887 | return system->entry; |
716 | } | 888 | } |
717 | 889 | ||
718 | static int | 890 | static int |
719 | event_create_dir(struct ftrace_event_call *call, struct dentry *d_events) | 891 | event_create_dir(struct ftrace_event_call *call, struct dentry *d_events, |
892 | const struct file_operations *id, | ||
893 | const struct file_operations *enable, | ||
894 | const struct file_operations *filter, | ||
895 | const struct file_operations *format) | ||
720 | { | 896 | { |
721 | struct dentry *entry; | 897 | struct dentry *entry; |
722 | int ret; | 898 | int ret; |
@@ -725,7 +901,7 @@ event_create_dir(struct ftrace_event_call *call, struct dentry *d_events) | |||
725 | * If the trace point header did not define TRACE_SYSTEM | 901 | * If the trace point header did not define TRACE_SYSTEM |
726 | * then the system would be called "TRACE_SYSTEM". | 902 | * then the system would be called "TRACE_SYSTEM". |
727 | */ | 903 | */ |
728 | if (strcmp(call->system, "TRACE_SYSTEM") != 0) | 904 | if (strcmp(call->system, TRACE_SYSTEM) != 0) |
729 | d_events = event_subsystem_dir(call->system, d_events); | 905 | d_events = event_subsystem_dir(call->system, d_events); |
730 | 906 | ||
731 | if (call->raw_init) { | 907 | if (call->raw_init) { |
@@ -744,21 +920,13 @@ event_create_dir(struct ftrace_event_call *call, struct dentry *d_events) | |||
744 | return -1; | 920 | return -1; |
745 | } | 921 | } |
746 | 922 | ||
747 | if (call->regfunc) { | 923 | if (call->regfunc) |
748 | entry = debugfs_create_file("enable", 0644, call->dir, call, | 924 | entry = trace_create_file("enable", 0644, call->dir, call, |
749 | &ftrace_enable_fops); | 925 | enable); |
750 | if (!entry) | ||
751 | pr_warning("Could not create debugfs " | ||
752 | "'%s/enable' entry\n", call->name); | ||
753 | } | ||
754 | 926 | ||
755 | if (call->id) { | 927 | if (call->id) |
756 | entry = debugfs_create_file("id", 0444, call->dir, call, | 928 | entry = trace_create_file("id", 0444, call->dir, call, |
757 | &ftrace_event_id_fops); | 929 | id); |
758 | if (!entry) | ||
759 | pr_warning("Could not create debugfs '%s/id' entry\n", | ||
760 | call->name); | ||
761 | } | ||
762 | 930 | ||
763 | if (call->define_fields) { | 931 | if (call->define_fields) { |
764 | ret = call->define_fields(); | 932 | ret = call->define_fields(); |
@@ -767,32 +935,195 @@ event_create_dir(struct ftrace_event_call *call, struct dentry *d_events) | |||
767 | " events/%s\n", call->name); | 935 | " events/%s\n", call->name); |
768 | return ret; | 936 | return ret; |
769 | } | 937 | } |
770 | entry = debugfs_create_file("filter", 0644, call->dir, call, | 938 | entry = trace_create_file("filter", 0644, call->dir, call, |
771 | &ftrace_event_filter_fops); | 939 | filter); |
772 | if (!entry) | ||
773 | pr_warning("Could not create debugfs " | ||
774 | "'%s/filter' entry\n", call->name); | ||
775 | } | 940 | } |
776 | 941 | ||
777 | /* A trace may not want to export its format */ | 942 | /* A trace may not want to export its format */ |
778 | if (!call->show_format) | 943 | if (!call->show_format) |
779 | return 0; | 944 | return 0; |
780 | 945 | ||
781 | entry = debugfs_create_file("format", 0444, call->dir, call, | 946 | entry = trace_create_file("format", 0444, call->dir, call, |
782 | &ftrace_event_format_fops); | 947 | format); |
783 | if (!entry) | 948 | |
784 | pr_warning("Could not create debugfs " | 949 | return 0; |
785 | "'%s/format' entry\n", call->name); | 950 | } |
951 | |||
952 | #define for_each_event(event, start, end) \ | ||
953 | for (event = start; \ | ||
954 | (unsigned long)event < (unsigned long)end; \ | ||
955 | event++) | ||
956 | |||
957 | #ifdef CONFIG_MODULES | ||
958 | |||
959 | static LIST_HEAD(ftrace_module_file_list); | ||
960 | |||
961 | /* | ||
962 | * Modules must own their file_operations to keep up with | ||
963 | * reference counting. | ||
964 | */ | ||
965 | struct ftrace_module_file_ops { | ||
966 | struct list_head list; | ||
967 | struct module *mod; | ||
968 | struct file_operations id; | ||
969 | struct file_operations enable; | ||
970 | struct file_operations format; | ||
971 | struct file_operations filter; | ||
972 | }; | ||
973 | |||
974 | static struct ftrace_module_file_ops * | ||
975 | trace_create_file_ops(struct module *mod) | ||
976 | { | ||
977 | struct ftrace_module_file_ops *file_ops; | ||
978 | |||
979 | /* | ||
980 | * This is a bit of a PITA. To allow for correct reference | ||
981 | * counting, modules must "own" their file_operations. | ||
982 | * To do this, we allocate the file operations that will be | ||
983 | * used in the event directory. | ||
984 | */ | ||
985 | |||
986 | file_ops = kmalloc(sizeof(*file_ops), GFP_KERNEL); | ||
987 | if (!file_ops) | ||
988 | return NULL; | ||
989 | |||
990 | file_ops->mod = mod; | ||
991 | |||
992 | file_ops->id = ftrace_event_id_fops; | ||
993 | file_ops->id.owner = mod; | ||
994 | |||
995 | file_ops->enable = ftrace_enable_fops; | ||
996 | file_ops->enable.owner = mod; | ||
997 | |||
998 | file_ops->filter = ftrace_event_filter_fops; | ||
999 | file_ops->filter.owner = mod; | ||
1000 | |||
1001 | file_ops->format = ftrace_event_format_fops; | ||
1002 | file_ops->format.owner = mod; | ||
1003 | |||
1004 | list_add(&file_ops->list, &ftrace_module_file_list); | ||
1005 | |||
1006 | return file_ops; | ||
1007 | } | ||
1008 | |||
1009 | static void trace_module_add_events(struct module *mod) | ||
1010 | { | ||
1011 | struct ftrace_module_file_ops *file_ops = NULL; | ||
1012 | struct ftrace_event_call *call, *start, *end; | ||
1013 | struct dentry *d_events; | ||
1014 | |||
1015 | start = mod->trace_events; | ||
1016 | end = mod->trace_events + mod->num_trace_events; | ||
1017 | |||
1018 | if (start == end) | ||
1019 | return; | ||
1020 | |||
1021 | d_events = event_trace_events_dir(); | ||
1022 | if (!d_events) | ||
1023 | return; | ||
1024 | |||
1025 | for_each_event(call, start, end) { | ||
1026 | /* The linker may leave blanks */ | ||
1027 | if (!call->name) | ||
1028 | continue; | ||
1029 | |||
1030 | /* | ||
1031 | * This module has events, create file ops for this module | ||
1032 | * if not already done. | ||
1033 | */ | ||
1034 | if (!file_ops) { | ||
1035 | file_ops = trace_create_file_ops(mod); | ||
1036 | if (!file_ops) | ||
1037 | return; | ||
1038 | } | ||
1039 | call->mod = mod; | ||
1040 | list_add(&call->list, &ftrace_events); | ||
1041 | event_create_dir(call, d_events, | ||
1042 | &file_ops->id, &file_ops->enable, | ||
1043 | &file_ops->filter, &file_ops->format); | ||
1044 | } | ||
1045 | } | ||
1046 | |||
1047 | static void trace_module_remove_events(struct module *mod) | ||
1048 | { | ||
1049 | struct ftrace_module_file_ops *file_ops; | ||
1050 | struct ftrace_event_call *call, *p; | ||
1051 | bool found = false; | ||
1052 | |||
1053 | down_write(&trace_event_mutex); | ||
1054 | list_for_each_entry_safe(call, p, &ftrace_events, list) { | ||
1055 | if (call->mod == mod) { | ||
1056 | found = true; | ||
1057 | ftrace_event_enable_disable(call, 0); | ||
1058 | if (call->event) | ||
1059 | __unregister_ftrace_event(call->event); | ||
1060 | debugfs_remove_recursive(call->dir); | ||
1061 | list_del(&call->list); | ||
1062 | trace_destroy_fields(call); | ||
1063 | destroy_preds(call); | ||
1064 | } | ||
1065 | } | ||
1066 | |||
1067 | /* Now free the file_operations */ | ||
1068 | list_for_each_entry(file_ops, &ftrace_module_file_list, list) { | ||
1069 | if (file_ops->mod == mod) | ||
1070 | break; | ||
1071 | } | ||
1072 | if (&file_ops->list != &ftrace_module_file_list) { | ||
1073 | list_del(&file_ops->list); | ||
1074 | kfree(file_ops); | ||
1075 | } | ||
1076 | |||
1077 | /* | ||
1078 | * It is safest to reset the ring buffer if the module being unloaded | ||
1079 | * registered any events. | ||
1080 | */ | ||
1081 | if (found) | ||
1082 | tracing_reset_current_online_cpus(); | ||
1083 | up_write(&trace_event_mutex); | ||
1084 | } | ||
1085 | |||
1086 | static int trace_module_notify(struct notifier_block *self, | ||
1087 | unsigned long val, void *data) | ||
1088 | { | ||
1089 | struct module *mod = data; | ||
1090 | |||
1091 | mutex_lock(&event_mutex); | ||
1092 | switch (val) { | ||
1093 | case MODULE_STATE_COMING: | ||
1094 | trace_module_add_events(mod); | ||
1095 | break; | ||
1096 | case MODULE_STATE_GOING: | ||
1097 | trace_module_remove_events(mod); | ||
1098 | break; | ||
1099 | } | ||
1100 | mutex_unlock(&event_mutex); | ||
786 | 1101 | ||
787 | return 0; | 1102 | return 0; |
788 | } | 1103 | } |
1104 | #else | ||
1105 | static int trace_module_notify(struct notifier_block *self, | ||
1106 | unsigned long val, void *data) | ||
1107 | { | ||
1108 | return 0; | ||
1109 | } | ||
1110 | #endif /* CONFIG_MODULES */ | ||
1111 | |||
1112 | struct notifier_block trace_module_nb = { | ||
1113 | .notifier_call = trace_module_notify, | ||
1114 | .priority = 0, | ||
1115 | }; | ||
1116 | |||
1117 | extern struct ftrace_event_call __start_ftrace_events[]; | ||
1118 | extern struct ftrace_event_call __stop_ftrace_events[]; | ||
789 | 1119 | ||
790 | static __init int event_trace_init(void) | 1120 | static __init int event_trace_init(void) |
791 | { | 1121 | { |
792 | struct ftrace_event_call *call = __start_ftrace_events; | 1122 | struct ftrace_event_call *call; |
793 | struct dentry *d_tracer; | 1123 | struct dentry *d_tracer; |
794 | struct dentry *entry; | 1124 | struct dentry *entry; |
795 | struct dentry *d_events; | 1125 | struct dentry *d_events; |
1126 | int ret; | ||
796 | 1127 | ||
797 | d_tracer = tracing_init_dentry(); | 1128 | d_tracer = tracing_init_dentry(); |
798 | if (!d_tracer) | 1129 | if (!d_tracer) |
@@ -816,13 +1147,243 @@ static __init int event_trace_init(void) | |||
816 | if (!d_events) | 1147 | if (!d_events) |
817 | return 0; | 1148 | return 0; |
818 | 1149 | ||
819 | for_each_event(call) { | 1150 | /* ring buffer internal formats */ |
1151 | trace_create_file("header_page", 0444, d_events, | ||
1152 | ring_buffer_print_page_header, | ||
1153 | &ftrace_show_header_fops); | ||
1154 | |||
1155 | trace_create_file("header_event", 0444, d_events, | ||
1156 | ring_buffer_print_entry_header, | ||
1157 | &ftrace_show_header_fops); | ||
1158 | |||
1159 | trace_create_file("enable", 0644, d_events, | ||
1160 | NULL, &ftrace_system_enable_fops); | ||
1161 | |||
1162 | for_each_event(call, __start_ftrace_events, __stop_ftrace_events) { | ||
820 | /* The linker may leave blanks */ | 1163 | /* The linker may leave blanks */ |
821 | if (!call->name) | 1164 | if (!call->name) |
822 | continue; | 1165 | continue; |
823 | event_create_dir(call, d_events); | 1166 | list_add(&call->list, &ftrace_events); |
1167 | event_create_dir(call, d_events, &ftrace_event_id_fops, | ||
1168 | &ftrace_enable_fops, &ftrace_event_filter_fops, | ||
1169 | &ftrace_event_format_fops); | ||
824 | } | 1170 | } |
825 | 1171 | ||
1172 | ret = register_module_notifier(&trace_module_nb); | ||
1173 | if (ret) | ||
1174 | pr_warning("Failed to register trace events module notifier\n"); | ||
1175 | |||
826 | return 0; | 1176 | return 0; |
827 | } | 1177 | } |
828 | fs_initcall(event_trace_init); | 1178 | fs_initcall(event_trace_init); |
1179 | |||
1180 | #ifdef CONFIG_FTRACE_STARTUP_TEST | ||
1181 | |||
1182 | static DEFINE_SPINLOCK(test_spinlock); | ||
1183 | static DEFINE_SPINLOCK(test_spinlock_irq); | ||
1184 | static DEFINE_MUTEX(test_mutex); | ||
1185 | |||
1186 | static __init void test_work(struct work_struct *dummy) | ||
1187 | { | ||
1188 | spin_lock(&test_spinlock); | ||
1189 | spin_lock_irq(&test_spinlock_irq); | ||
1190 | udelay(1); | ||
1191 | spin_unlock_irq(&test_spinlock_irq); | ||
1192 | spin_unlock(&test_spinlock); | ||
1193 | |||
1194 | mutex_lock(&test_mutex); | ||
1195 | msleep(1); | ||
1196 | mutex_unlock(&test_mutex); | ||
1197 | } | ||
1198 | |||
1199 | static __init int event_test_thread(void *unused) | ||
1200 | { | ||
1201 | void *test_malloc; | ||
1202 | |||
1203 | test_malloc = kmalloc(1234, GFP_KERNEL); | ||
1204 | if (!test_malloc) | ||
1205 | pr_info("failed to kmalloc\n"); | ||
1206 | |||
1207 | schedule_on_each_cpu(test_work); | ||
1208 | |||
1209 | kfree(test_malloc); | ||
1210 | |||
1211 | set_current_state(TASK_INTERRUPTIBLE); | ||
1212 | while (!kthread_should_stop()) | ||
1213 | schedule(); | ||
1214 | |||
1215 | return 0; | ||
1216 | } | ||
1217 | |||
1218 | /* | ||
1219 | * Do various things that may trigger events. | ||
1220 | */ | ||
1221 | static __init void event_test_stuff(void) | ||
1222 | { | ||
1223 | struct task_struct *test_thread; | ||
1224 | |||
1225 | test_thread = kthread_run(event_test_thread, NULL, "test-events"); | ||
1226 | msleep(1); | ||
1227 | kthread_stop(test_thread); | ||
1228 | } | ||
1229 | |||
1230 | /* | ||
1231 | * For every trace event defined, we will test each trace point separately, | ||
1232 | * and then by groups, and finally all trace points. | ||
1233 | */ | ||
1234 | static __init void event_trace_self_tests(void) | ||
1235 | { | ||
1236 | struct ftrace_event_call *call; | ||
1237 | struct event_subsystem *system; | ||
1238 | int ret; | ||
1239 | |||
1240 | pr_info("Running tests on trace events:\n"); | ||
1241 | |||
1242 | list_for_each_entry(call, &ftrace_events, list) { | ||
1243 | |||
1244 | /* Only test those that have a regfunc */ | ||
1245 | if (!call->regfunc) | ||
1246 | continue; | ||
1247 | |||
1248 | pr_info("Testing event %s: ", call->name); | ||
1249 | |||
1250 | /* | ||
1251 | * If an event is already enabled, someone is using | ||
1252 | * it and the self test should not be on. | ||
1253 | */ | ||
1254 | if (call->enabled) { | ||
1255 | pr_warning("Enabled event during self test!\n"); | ||
1256 | WARN_ON_ONCE(1); | ||
1257 | continue; | ||
1258 | } | ||
1259 | |||
1260 | ftrace_event_enable_disable(call, 1); | ||
1261 | event_test_stuff(); | ||
1262 | ftrace_event_enable_disable(call, 0); | ||
1263 | |||
1264 | pr_cont("OK\n"); | ||
1265 | } | ||
1266 | |||
1267 | /* Now test at the sub system level */ | ||
1268 | |||
1269 | pr_info("Running tests on trace event systems:\n"); | ||
1270 | |||
1271 | list_for_each_entry(system, &event_subsystems, list) { | ||
1272 | |||
1273 | /* the ftrace system is special, skip it */ | ||
1274 | if (strcmp(system->name, "ftrace") == 0) | ||
1275 | continue; | ||
1276 | |||
1277 | pr_info("Testing event system %s: ", system->name); | ||
1278 | |||
1279 | ret = __ftrace_set_clr_event(NULL, system->name, NULL, 1); | ||
1280 | if (WARN_ON_ONCE(ret)) { | ||
1281 | pr_warning("error enabling system %s\n", | ||
1282 | system->name); | ||
1283 | continue; | ||
1284 | } | ||
1285 | |||
1286 | event_test_stuff(); | ||
1287 | |||
1288 | ret = __ftrace_set_clr_event(NULL, system->name, NULL, 0); | ||
1289 | if (WARN_ON_ONCE(ret)) | ||
1290 | pr_warning("error disabling system %s\n", | ||
1291 | system->name); | ||
1292 | |||
1293 | pr_cont("OK\n"); | ||
1294 | } | ||
1295 | |||
1296 | /* Test with all events enabled */ | ||
1297 | |||
1298 | pr_info("Running tests on all trace events:\n"); | ||
1299 | pr_info("Testing all events: "); | ||
1300 | |||
1301 | ret = __ftrace_set_clr_event(NULL, NULL, NULL, 1); | ||
1302 | if (WARN_ON_ONCE(ret)) { | ||
1303 | pr_warning("error enabling all events\n"); | ||
1304 | return; | ||
1305 | } | ||
1306 | |||
1307 | event_test_stuff(); | ||
1308 | |||
1309 | /* reset sysname */ | ||
1310 | ret = __ftrace_set_clr_event(NULL, NULL, NULL, 0); | ||
1311 | if (WARN_ON_ONCE(ret)) { | ||
1312 | pr_warning("error disabling all events\n"); | ||
1313 | return; | ||
1314 | } | ||
1315 | |||
1316 | pr_cont("OK\n"); | ||
1317 | } | ||
1318 | |||
1319 | #ifdef CONFIG_FUNCTION_TRACER | ||
1320 | |||
1321 | static DEFINE_PER_CPU(atomic_t, test_event_disable); | ||
1322 | |||
1323 | static void | ||
1324 | function_test_events_call(unsigned long ip, unsigned long parent_ip) | ||
1325 | { | ||
1326 | struct ring_buffer_event *event; | ||
1327 | struct ftrace_entry *entry; | ||
1328 | unsigned long flags; | ||
1329 | long disabled; | ||
1330 | int resched; | ||
1331 | int cpu; | ||
1332 | int pc; | ||
1333 | |||
1334 | pc = preempt_count(); | ||
1335 | resched = ftrace_preempt_disable(); | ||
1336 | cpu = raw_smp_processor_id(); | ||
1337 | disabled = atomic_inc_return(&per_cpu(test_event_disable, cpu)); | ||
1338 | |||
1339 | if (disabled != 1) | ||
1340 | goto out; | ||
1341 | |||
1342 | local_save_flags(flags); | ||
1343 | |||
1344 | event = trace_current_buffer_lock_reserve(TRACE_FN, sizeof(*entry), | ||
1345 | flags, pc); | ||
1346 | if (!event) | ||
1347 | goto out; | ||
1348 | entry = ring_buffer_event_data(event); | ||
1349 | entry->ip = ip; | ||
1350 | entry->parent_ip = parent_ip; | ||
1351 | |||
1352 | trace_nowake_buffer_unlock_commit(event, flags, pc); | ||
1353 | |||
1354 | out: | ||
1355 | atomic_dec(&per_cpu(test_event_disable, cpu)); | ||
1356 | ftrace_preempt_enable(resched); | ||
1357 | } | ||
1358 | |||
1359 | static struct ftrace_ops trace_ops __initdata = | ||
1360 | { | ||
1361 | .func = function_test_events_call, | ||
1362 | }; | ||
1363 | |||
1364 | static __init void event_trace_self_test_with_function(void) | ||
1365 | { | ||
1366 | register_ftrace_function(&trace_ops); | ||
1367 | pr_info("Running tests again, along with the function tracer\n"); | ||
1368 | event_trace_self_tests(); | ||
1369 | unregister_ftrace_function(&trace_ops); | ||
1370 | } | ||
1371 | #else | ||
1372 | static __init void event_trace_self_test_with_function(void) | ||
1373 | { | ||
1374 | } | ||
1375 | #endif | ||
1376 | |||
1377 | static __init int event_trace_self_tests_init(void) | ||
1378 | { | ||
1379 | |||
1380 | event_trace_self_tests(); | ||
1381 | |||
1382 | event_trace_self_test_with_function(); | ||
1383 | |||
1384 | return 0; | ||
1385 | } | ||
1386 | |||
1387 | late_initcall(event_trace_self_tests_init); | ||
1388 | |||
1389 | #endif | ||