]> Pileus Git - ~andy/linux/commitdiff
tracing: Return error if register_ftrace_function_probe() fails for event_enable_func()
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Thu, 9 May 2013 15:30:26 +0000 (11:30 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Thu, 9 May 2013 15:30:26 +0000 (11:30 -0400)
register_ftrace_function_probe() returns the number of functions
it registered, which can be zero, it can also return a negative number
if something went wrong. But event_enable_func() only checks for
the case that it didn't register anything, it needs to also check
for the case that something went wrong and return that error code
as well.

Added some comments about the code as well, to make it more
understandable.

Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace_events.c

index 44ac83614c3d05ed044e910890aec8a747743fcc..87e826f1c23748c86826e0ba25651fee92710c0d 100644 (file)
@@ -2061,11 +2061,18 @@ event_enable_func(struct ftrace_hash *hash,
        if (ret < 0)
                goto out_put;
        ret = register_ftrace_function_probe(glob, ops, data);
+       /*
+        * The above returns on success the # of functions enabled,
+        * but if it didn't find any functions it returns zero.
+        * Consider no functions a failure too.
+        */
        if (!ret) {
                ret = -ENOENT;
                goto out_disable;
-       } else
-               ret = 0;
+       } else if (ret < 0)
+               goto out_disable;
+       /* Just return zero, not the number of enabled functions */
+       ret = 0;
  out:
        mutex_unlock(&event_mutex);
        return ret;