perf scripting: Don't die if scripting can't be setup, disable it
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 25 Oct 2016 20:30:05 +0000 (17:30 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 28 Oct 2016 13:29:44 +0000 (11:29 -0200)
Removing one more set of die() calls.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-6pyil685m5i2tugg56gcy0tg@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/trace-event-scripting.c

index a2fd6e7..0ac9077 100644 (file)
@@ -25,6 +25,7 @@
 #include <errno.h>
 
 #include "../perf.h"
+#include "debug.h"
 #include "util.h"
 #include "trace-event.h"
 
@@ -86,17 +87,15 @@ struct scripting_ops python_scripting_unsupported_ops = {
 
 static void register_python_scripting(struct scripting_ops *scripting_ops)
 {
-       int err;
-       err = script_spec_register("Python", scripting_ops);
-       if (err)
-               die("error registering Python script extension");
-
-       err = script_spec_register("py", scripting_ops);
-       if (err)
-               die("error registering py script extension");
-
        if (scripting_context == NULL)
                scripting_context = malloc(sizeof(*scripting_context));
+
+       if (scripting_context == NULL ||
+          script_spec_register("Python", scripting_ops) ||
+          script_spec_register("py", scripting_ops)) {
+               pr_err("Error registering Python script extension: disabling it\n");
+               zfree(&scripting_context);
+       }
 }
 
 #ifdef NO_LIBPYTHON
@@ -151,17 +150,15 @@ struct scripting_ops perl_scripting_unsupported_ops = {
 
 static void register_perl_scripting(struct scripting_ops *scripting_ops)
 {
-       int err;
-       err = script_spec_register("Perl", scripting_ops);
-       if (err)
-               die("error registering Perl script extension");
-
-       err = script_spec_register("pl", scripting_ops);
-       if (err)
-               die("error registering pl script extension");
-
        if (scripting_context == NULL)
                scripting_context = malloc(sizeof(*scripting_context));
+
+       if (scripting_context == NULL ||
+          script_spec_register("Perl", scripting_ops) ||
+          script_spec_register("pl", scripting_ops)) {
+               pr_err("Error registering Perl script extension: disabling it\n");
+               zfree(&scripting_context);
+       }
 }
 
 #ifdef NO_LIBPERL