diff options
author | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2017-04-03 23:43:49 +0200 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2017-04-21 04:06:36 +0200 |
commit | e51a9896794bbb819d89b803e5a8446199034853 (patch) | |
tree | 42062d71f94b66ec91e1be7b88d9891949e9cb83 /kernel/trace | |
parent | ftrace: Move the function commands into the tracing directory (diff) | |
download | linux-e51a9896794bbb819d89b803e5a8446199034853.tar.xz linux-e51a9896794bbb819d89b803e5a8446199034853.zip |
ftrace: Remove unused "flags" field from struct ftrace_func_probe
Nothing uses "flags" in the ftrace_func_probe descriptor. Remove it.
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/ftrace.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index b5ce7ea67e02..b6dc29583c86 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c @@ -1101,7 +1101,6 @@ static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly; struct ftrace_func_probe { struct hlist_node node; struct ftrace_probe_ops *ops; - unsigned long flags; unsigned long ip; void *data; struct list_head free_list; |