perf ftrace: Move out common code from __cmd_ftrace
The signal setup code and evlist__prepare_workload() can be used for other subcommands. Let's move them out of the __cmd_ftrace(). Then it doesn't need to pass argc and argv. On the other hand, select_tracer() is specific to the 'trace' subcommand so it'd better moving it into the __cmd_ftrace(). Signed-off-by: Namhyung Kim <namhyung@kernel.org> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Athira Jajeev <atrajeev@linux.vnet.ibm.com> Cc: Changbin Du <changbin.du@gmail.com> Cc: Ian Rogers <irogers@google.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Song Liu <songliubraving@fb.com> Cc: Stephane Eranian <eranian@google.com> Link: https://lore.kernel.org/r/20211215185154.360314-3-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Родитель
416e15ad17
Коммит
a9b8ae8ae3
|
@ -565,7 +565,24 @@ static int set_tracing_options(struct perf_ftrace *ftrace)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __cmd_ftrace(struct perf_ftrace *ftrace, int argc, const char **argv)
|
static void select_tracer(struct perf_ftrace *ftrace)
|
||||||
|
{
|
||||||
|
bool graph = !list_empty(&ftrace->graph_funcs) ||
|
||||||
|
!list_empty(&ftrace->nograph_funcs);
|
||||||
|
bool func = !list_empty(&ftrace->filters) ||
|
||||||
|
!list_empty(&ftrace->notrace);
|
||||||
|
|
||||||
|
/* The function_graph has priority over function tracer. */
|
||||||
|
if (graph)
|
||||||
|
ftrace->tracer = "function_graph";
|
||||||
|
else if (func)
|
||||||
|
ftrace->tracer = "function";
|
||||||
|
/* Otherwise, the default tracer is used. */
|
||||||
|
|
||||||
|
pr_debug("%s tracer is used\n", ftrace->tracer);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int __cmd_ftrace(struct perf_ftrace *ftrace)
|
||||||
{
|
{
|
||||||
char *trace_file;
|
char *trace_file;
|
||||||
int trace_fd;
|
int trace_fd;
|
||||||
|
@ -586,10 +603,7 @@ static int __cmd_ftrace(struct perf_ftrace *ftrace, int argc, const char **argv)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
signal(SIGINT, sig_handler);
|
select_tracer(ftrace);
|
||||||
signal(SIGUSR1, sig_handler);
|
|
||||||
signal(SIGCHLD, sig_handler);
|
|
||||||
signal(SIGPIPE, sig_handler);
|
|
||||||
|
|
||||||
if (reset_tracing_files(ftrace) < 0) {
|
if (reset_tracing_files(ftrace) < 0) {
|
||||||
pr_err("failed to reset ftrace\n");
|
pr_err("failed to reset ftrace\n");
|
||||||
|
@ -600,11 +614,6 @@ static int __cmd_ftrace(struct perf_ftrace *ftrace, int argc, const char **argv)
|
||||||
if (write_tracing_file("trace", "0") < 0)
|
if (write_tracing_file("trace", "0") < 0)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (argc && evlist__prepare_workload(ftrace->evlist, &ftrace->target, argv, false,
|
|
||||||
ftrace__workload_exec_failed_signal) < 0) {
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (set_tracing_options(ftrace) < 0)
|
if (set_tracing_options(ftrace) < 0)
|
||||||
goto out_reset;
|
goto out_reset;
|
||||||
|
|
||||||
|
@ -855,23 +864,6 @@ static int parse_graph_tracer_opts(const struct option *opt,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void select_tracer(struct perf_ftrace *ftrace)
|
|
||||||
{
|
|
||||||
bool graph = !list_empty(&ftrace->graph_funcs) ||
|
|
||||||
!list_empty(&ftrace->nograph_funcs);
|
|
||||||
bool func = !list_empty(&ftrace->filters) ||
|
|
||||||
!list_empty(&ftrace->notrace);
|
|
||||||
|
|
||||||
/* The function_graph has priority over function tracer. */
|
|
||||||
if (graph)
|
|
||||||
ftrace->tracer = "function_graph";
|
|
||||||
else if (func)
|
|
||||||
ftrace->tracer = "function";
|
|
||||||
/* Otherwise, the default tracer is used. */
|
|
||||||
|
|
||||||
pr_debug("%s tracer is used\n", ftrace->tracer);
|
|
||||||
}
|
|
||||||
|
|
||||||
int cmd_ftrace(int argc, const char **argv)
|
int cmd_ftrace(int argc, const char **argv)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -937,6 +929,11 @@ int cmd_ftrace(int argc, const char **argv)
|
||||||
INIT_LIST_HEAD(&ftrace.graph_funcs);
|
INIT_LIST_HEAD(&ftrace.graph_funcs);
|
||||||
INIT_LIST_HEAD(&ftrace.nograph_funcs);
|
INIT_LIST_HEAD(&ftrace.nograph_funcs);
|
||||||
|
|
||||||
|
signal(SIGINT, sig_handler);
|
||||||
|
signal(SIGUSR1, sig_handler);
|
||||||
|
signal(SIGCHLD, sig_handler);
|
||||||
|
signal(SIGPIPE, sig_handler);
|
||||||
|
|
||||||
ret = perf_config(perf_ftrace_config, &ftrace);
|
ret = perf_config(perf_ftrace_config, &ftrace);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -951,8 +948,6 @@ int cmd_ftrace(int argc, const char **argv)
|
||||||
if (!argc && target__none(&ftrace.target))
|
if (!argc && target__none(&ftrace.target))
|
||||||
ftrace.target.system_wide = true;
|
ftrace.target.system_wide = true;
|
||||||
|
|
||||||
select_tracer(&ftrace);
|
|
||||||
|
|
||||||
ret = target__validate(&ftrace.target);
|
ret = target__validate(&ftrace.target);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
char errbuf[512];
|
char errbuf[512];
|
||||||
|
@ -972,7 +967,15 @@ int cmd_ftrace(int argc, const char **argv)
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto out_delete_evlist;
|
goto out_delete_evlist;
|
||||||
|
|
||||||
ret = __cmd_ftrace(&ftrace, argc, argv);
|
if (argc) {
|
||||||
|
ret = evlist__prepare_workload(ftrace.evlist, &ftrace.target,
|
||||||
|
argv, false,
|
||||||
|
ftrace__workload_exec_failed_signal);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out_delete_evlist;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = __cmd_ftrace(&ftrace);
|
||||||
|
|
||||||
out_delete_evlist:
|
out_delete_evlist:
|
||||||
evlist__delete(ftrace.evlist);
|
evlist__delete(ftrace.evlist);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче