提交 3824a4e8 编写于 作者: T Tom Zanussi 提交者: Arnaldo Carvalho de Melo

perf/trace/scripting: don't show script start/stop messages by default

Only print the script start/stop messages in verbose mode - users
normally don't care and it just clutters up the output.

Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
LKML-Reference: <1273466820-9330-7-git-send-email-tzanussi@gmail.com>
Signed-off-by: NTom Zanussi <tzanussi@gmail.com>
Signed-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 a3412d9b
......@@ -53,6 +53,8 @@ static void setup_scripting(void)
static int cleanup_scripting(void)
{
pr_debug("\nperf trace script stopped\n");
return scripting_ops->stop_script();
}
......@@ -703,6 +705,7 @@ int cmd_trace(int argc, const char **argv, const char *prefix __used)
err = scripting_ops->start_script(script_name, argc, argv);
if (err)
goto out;
pr_debug("perf trace started with script %s\n\n", script_name);
}
err = __cmd_trace(session);
......
......@@ -371,7 +371,6 @@ static int perl_start_script(const char *script, int argc, const char **argv)
run_start_sub();
free(command_line);
fprintf(stderr, "perf trace started with Perl script %s\n\n", script);
return 0;
error:
perl_free(my_perl);
......@@ -394,8 +393,6 @@ static int perl_stop_script(void)
perl_destruct(my_perl);
perl_free(my_perl);
fprintf(stderr, "\nperf trace Perl script stopped\n");
return 0;
}
......
......@@ -374,8 +374,6 @@ static int python_start_script(const char *script, int argc, const char **argv)
}
free(command_line);
fprintf(stderr, "perf trace started with Python script %s\n\n",
script);
return err;
error:
......@@ -407,8 +405,6 @@ static int python_stop_script(void)
Py_XDECREF(main_module);
Py_Finalize();
fprintf(stderr, "\nperf trace Python script stopped\n");
return err;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册