提交 a33fbd56 编写于 作者: A Arnaldo Carvalho de Melo

perf machine: Simplify synthesize_threads method

Several tools (top, kvm) don't need to be called back to process each of
the syntheiszed records, instead relying on the machine__process_event
function to change the per machine data structures that represent
threads and mmaps, so provide a way to ask for this common idiom.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-pusqibp8n3c4ynegd1frn4zd@git.kernel.orgSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 58d925dc
...@@ -1544,9 +1544,8 @@ static int kvm_events_live(struct perf_kvm_stat *kvm, ...@@ -1544,9 +1544,8 @@ static int kvm_events_live(struct perf_kvm_stat *kvm,
} }
kvm->session->evlist = kvm->evlist; kvm->session->evlist = kvm->evlist;
perf_session__set_id_hdr_size(kvm->session); perf_session__set_id_hdr_size(kvm->session);
machine__synthesize_threads(&kvm->session->machines.host, &kvm->tool, machine__synthesize_threads(&kvm->session->machines.host, &kvm->opts.target,
&kvm->opts.target, kvm->evlist->threads, kvm->evlist->threads, false);
perf_event__process, false);
err = kvm_live_open_events(kvm); err = kvm_live_open_events(kvm);
if (err) if (err)
goto out; goto out;
......
...@@ -480,8 +480,8 @@ static int __cmd_record(struct perf_record *rec, int argc, const char **argv) ...@@ -480,8 +480,8 @@ static int __cmd_record(struct perf_record *rec, int argc, const char **argv)
perf_event__synthesize_guest_os, tool); perf_event__synthesize_guest_os, tool);
} }
err = machine__synthesize_threads(machine, tool, &opts->target, evsel_list->threads, err = __machine__synthesize_threads(machine, tool, &opts->target, evsel_list->threads,
process_synthesized_event, opts->sample_address); process_synthesized_event, opts->sample_address);
if (err != 0) if (err != 0)
goto out_delete_session; goto out_delete_session;
......
...@@ -950,9 +950,8 @@ static int __cmd_top(struct perf_top *top) ...@@ -950,9 +950,8 @@ static int __cmd_top(struct perf_top *top)
if (ret) if (ret)
goto out_delete; goto out_delete;
machine__synthesize_threads(&top->session->machines.host, &top->tool, machine__synthesize_threads(&top->session->machines.host, &opts->target,
&opts->target, top->evlist->threads, top->evlist->threads, false);
perf_event__process, false);
ret = perf_top__start_counters(top); ret = perf_top__start_counters(top);
if (ret) if (ret)
goto out_delete; goto out_delete;
......
...@@ -1340,8 +1340,8 @@ static int trace__symbols_init(struct trace *trace, struct perf_evlist *evlist) ...@@ -1340,8 +1340,8 @@ static int trace__symbols_init(struct trace *trace, struct perf_evlist *evlist)
if (trace->host == NULL) if (trace->host == NULL)
return -ENOMEM; return -ENOMEM;
err = machine__synthesize_threads(trace->host, &trace->tool, &trace->opts.target, err = __machine__synthesize_threads(trace->host, &trace->tool, &trace->opts.target,
evlist->threads, trace__tool_process, false); evlist->threads, trace__tool_process, false);
if (err) if (err)
symbol__exit(); symbol__exit();
......
...@@ -1395,9 +1395,9 @@ int machine__for_each_thread(struct machine *machine, ...@@ -1395,9 +1395,9 @@ int machine__for_each_thread(struct machine *machine,
return rc; return rc;
} }
int machine__synthesize_threads(struct machine *machine, struct perf_tool *tool, int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
struct perf_target *target, struct thread_map *threads, struct perf_target *target, struct thread_map *threads,
perf_event__handler_t process, bool data_mmap) perf_event__handler_t process, bool data_mmap)
{ {
if (perf_target__has_task(target)) if (perf_target__has_task(target))
return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap); return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap);
......
...@@ -179,7 +179,15 @@ int machine__for_each_thread(struct machine *machine, ...@@ -179,7 +179,15 @@ int machine__for_each_thread(struct machine *machine,
int (*fn)(struct thread *thread, void *p), int (*fn)(struct thread *thread, void *p),
void *priv); void *priv);
int machine__synthesize_threads(struct machine *machine, struct perf_tool *tool, int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
struct perf_target *target, struct thread_map *threads, struct perf_target *target, struct thread_map *threads,
perf_event__handler_t process, bool data_mmap); perf_event__handler_t process, bool data_mmap);
static inline
int machine__synthesize_threads(struct machine *machine, struct perf_target *target,
struct thread_map *threads, bool data_mmap)
{
return __machine__synthesize_threads(machine, NULL, target, threads,
perf_event__process, data_mmap);
}
#endif /* __PERF_MACHINE_H */ #endif /* __PERF_MACHINE_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册