diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-04 15:02:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-04 15:02:48 -0400 |
commit | c9b88e9581828bb8bba06c5e7ee8ed1761172b6e (patch) | |
tree | 08f025f4e5ff9f33bb40f89e790a1dd6db04e75c /include/linux/ftrace_event.h | |
parent | b8c0aa46b3e86083721b57ed2eec6bd2c29ebfba (diff) | |
parent | 6355d54438bfc3b636cb6453cd091f782fb9b4d7 (diff) |
Merge tag 'trace-3.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace
Pull tracing filter cleanups from Steven Rostedt:
"Oleg Nesterov did several clean ups with the tracing filter code. As
he found some small bugs that went into 3.16, and these changes were
based on that, I had to apply his changes to a separate branch than my
main development branch.
This was based on work that was already pulled into 3.16, and is a
separate pull request to keep from having local merges in my pull
request"
* tag 'trace-3.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
tracing: Kill "filter_string" arg of replace_preds()
tracing: Change apply_subsystem_event_filter() paths to check file->system == dir
tracing: Kill ftrace_event_call->files
tracing/uprobes: Kill the dead TRACE_EVENT_FL_USE_CALL_FILTER logic
tracing: Kill call_filter_disable()
tracing: Kill destroy_call_preds()
tracing: Kill destroy_preds() and destroy_file_preds()
Diffstat (limited to 'include/linux/ftrace_event.h')
-rw-r--r-- | include/linux/ftrace_event.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index cff3106ffe2c..06c6faa9e5cc 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
@@ -272,7 +272,6 @@ struct ftrace_event_call { | |||
272 | struct trace_event event; | 272 | struct trace_event event; |
273 | const char *print_fmt; | 273 | const char *print_fmt; |
274 | struct event_filter *filter; | 274 | struct event_filter *filter; |
275 | struct list_head *files; | ||
276 | void *mod; | 275 | void *mod; |
277 | void *data; | 276 | void *data; |
278 | /* | 277 | /* |
@@ -404,8 +403,6 @@ enum event_trigger_type { | |||
404 | ETT_EVENT_ENABLE = (1 << 3), | 403 | ETT_EVENT_ENABLE = (1 << 3), |
405 | }; | 404 | }; |
406 | 405 | ||
407 | extern void destroy_preds(struct ftrace_event_file *file); | ||
408 | extern void destroy_call_preds(struct ftrace_event_call *call); | ||
409 | extern int filter_match_preds(struct event_filter *filter, void *rec); | 406 | extern int filter_match_preds(struct event_filter *filter, void *rec); |
410 | 407 | ||
411 | extern int filter_check_discard(struct ftrace_event_file *file, void *rec, | 408 | extern int filter_check_discard(struct ftrace_event_file *file, void *rec, |