]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ftrace: Pass in global_ops for use with filtering files
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Tue, 12 Nov 2013 04:07:14 +0000 (23:07 -0500)
committerSteven Rostedt <rostedt@goodmis.org>
Thu, 20 Feb 2014 17:13:19 +0000 (12:13 -0500)
In preparation for having the function tracing instances be able to
filter on functions, the generic filter functions must first be
converted to take in the global_ops as a parameter.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/ftrace.c

index 98ae4ed965db8043382d2c6705f0bf324d95ff76..2b3e23991c8a98ec1867b98b19c6f8fa69e97458 100644 (file)
@@ -2870,7 +2870,9 @@ ftrace_regex_open(struct ftrace_ops *ops, int flag,
 static int
 ftrace_filter_open(struct inode *inode, struct file *file)
 {
-       return ftrace_regex_open(&global_ops,
+       struct ftrace_ops *ops = inode->i_private;
+
+       return ftrace_regex_open(ops,
                        FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
                        inode, file);
 }
@@ -2878,7 +2880,9 @@ ftrace_filter_open(struct inode *inode, struct file *file)
 static int
 ftrace_notrace_open(struct inode *inode, struct file *file)
 {
-       return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
+       struct ftrace_ops *ops = inode->i_private;
+
+       return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
                                 inode, file);
 }
 
@@ -4118,10 +4122,10 @@ static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
                        d_tracer, NULL, &ftrace_enabled_fops);
 
        trace_create_file("set_ftrace_filter", 0644, d_tracer,
-                       NULL, &ftrace_filter_fops);
+                       &global_ops, &ftrace_filter_fops);
 
        trace_create_file("set_ftrace_notrace", 0644, d_tracer,
-                                   NULL, &ftrace_notrace_fops);
+                                   &global_ops, &ftrace_notrace_fops);
 
 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
        trace_create_file("set_graph_function", 0444, d_tracer,