diff options
author | Oleg Nesterov <oleg@redhat.com> | 2013-07-26 13:25:47 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2013-07-29 22:57:10 -0400 |
commit | f6a84bdc75b5c11621dec58db73fe102cbaf40cc (patch) | |
tree | 9200a7b2eae75c9ce783f82ad396fe09aab6feae /kernel/trace | |
parent | c5a44a1200c6eda2202434f25325e8ad19533fca (diff) |
tracing: Introduce remove_event_file_dir()
Preparation for the next patch. Extract the common code from
remove_event_from_tracers() and __trace_remove_event_dirs()
into the new helper, remove_event_file_dir().
The patch looks more complicated than it actually is, it also
moves remove_subsystem() up to avoid the forward declaration.
Link: http://lkml.kernel.org/r/20130726172547.GA3629@redhat.com
Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/trace_events.c | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c index 50dc8b2e5435..05d647ecd01a 100644 --- a/kernel/trace/trace_events.c +++ b/kernel/trace/trace_events.c | |||
@@ -409,11 +409,31 @@ static void put_system(struct ftrace_subsystem_dir *dir) | |||
409 | mutex_unlock(&event_mutex); | 409 | mutex_unlock(&event_mutex); |
410 | } | 410 | } |
411 | 411 | ||
412 | static void remove_subsystem(struct ftrace_subsystem_dir *dir) | ||
413 | { | ||
414 | if (!dir) | ||
415 | return; | ||
416 | |||
417 | if (!--dir->nr_events) { | ||
418 | debugfs_remove_recursive(dir->entry); | ||
419 | list_del(&dir->list); | ||
420 | __put_system_dir(dir); | ||
421 | } | ||
422 | } | ||
423 | |||
412 | static void *event_file_data(struct file *filp) | 424 | static void *event_file_data(struct file *filp) |
413 | { | 425 | { |
414 | return ACCESS_ONCE(file_inode(filp)->i_private); | 426 | return ACCESS_ONCE(file_inode(filp)->i_private); |
415 | } | 427 | } |
416 | 428 | ||
429 | static void remove_event_file_dir(struct ftrace_event_file *file) | ||
430 | { | ||
431 | list_del(&file->list); | ||
432 | debugfs_remove_recursive(file->dir); | ||
433 | remove_subsystem(file->system); | ||
434 | kmem_cache_free(file_cachep, file); | ||
435 | } | ||
436 | |||
417 | /* | 437 | /* |
418 | * Open and update trace_array ref count. | 438 | * Open and update trace_array ref count. |
419 | * Must have the current trace_array passed to it. | 439 | * Must have the current trace_array passed to it. |
@@ -1549,33 +1569,16 @@ event_create_dir(struct dentry *parent, | |||
1549 | return 0; | 1569 | return 0; |
1550 | } | 1570 | } |
1551 | 1571 | ||
1552 | static void remove_subsystem(struct ftrace_subsystem_dir *dir) | ||
1553 | { | ||
1554 | if (!dir) | ||
1555 | return; | ||
1556 | |||
1557 | if (!--dir->nr_events) { | ||
1558 | debugfs_remove_recursive(dir->entry); | ||
1559 | list_del(&dir->list); | ||
1560 | __put_system_dir(dir); | ||
1561 | } | ||
1562 | } | ||
1563 | |||
1564 | static void remove_event_from_tracers(struct ftrace_event_call *call) | 1572 | static void remove_event_from_tracers(struct ftrace_event_call *call) |
1565 | { | 1573 | { |
1566 | struct ftrace_event_file *file; | 1574 | struct ftrace_event_file *file; |
1567 | struct trace_array *tr; | 1575 | struct trace_array *tr; |
1568 | 1576 | ||
1569 | do_for_each_event_file_safe(tr, file) { | 1577 | do_for_each_event_file_safe(tr, file) { |
1570 | |||
1571 | if (file->event_call != call) | 1578 | if (file->event_call != call) |
1572 | continue; | 1579 | continue; |
1573 | 1580 | ||
1574 | list_del(&file->list); | 1581 | remove_event_file_dir(file); |
1575 | debugfs_remove_recursive(file->dir); | ||
1576 | remove_subsystem(file->system); | ||
1577 | kmem_cache_free(file_cachep, file); | ||
1578 | |||
1579 | /* | 1582 | /* |
1580 | * The do_for_each_event_file_safe() is | 1583 | * The do_for_each_event_file_safe() is |
1581 | * a double loop. After finding the call for this | 1584 | * a double loop. After finding the call for this |
@@ -2305,12 +2308,8 @@ __trace_remove_event_dirs(struct trace_array *tr) | |||
2305 | { | 2308 | { |
2306 | struct ftrace_event_file *file, *next; | 2309 | struct ftrace_event_file *file, *next; |
2307 | 2310 | ||
2308 | list_for_each_entry_safe(file, next, &tr->events, list) { | 2311 | list_for_each_entry_safe(file, next, &tr->events, list) |
2309 | list_del(&file->list); | 2312 | remove_event_file_dir(file); |
2310 | debugfs_remove_recursive(file->dir); | ||
2311 | remove_subsystem(file->system); | ||
2312 | kmem_cache_free(file_cachep, file); | ||
2313 | } | ||
2314 | } | 2313 | } |
2315 | 2314 | ||
2316 | static void | 2315 | static void |