aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-trace.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2013-11-11 07:44:09 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-11-11 13:56:39 -0500
commit62605dc50c27bf0e4ff69b7b3166f226586aff02 (patch)
treee858c9a71749a3d280b25a7ab7928dcbeba51a73 /tools/perf/builtin-trace.c
parentef503831d8d64e12c6dad5547875cfcd4c5d043c (diff)
perf record: Synthesize non-exec MMAP records when --data used
When perf_event_attr.mmap_data is set the kernel will generate PERF_RECORD_MMAP events when non-exec (data, SysV mem) mmaps are created, so we need to synthesize from /proc/pid/maps for existing threads, as we do for exec mmaps. Right now just 'perf record' does it, but any other tool that uses perf_event__synthesize_thread(s|map) can request it. Reported-by: Don Zickus <dzickus@redhat.com> Tested-by: Don Zickus <dzickus@redhat.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Bill Gray <bgray@redhat.com> Cc: David Ahern <dsahern@gmail.com> Cc: Don Zickus <dzickus@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Joe Mario <jmario@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Richard Fowles <rfowles@redhat.com> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-ihwzraikx23ian9txinogvv2@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-trace.c')
-rw-r--r--tools/perf/builtin-trace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index 68943cad70d4..277c2367e0cf 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -1343,10 +1343,10 @@ static int trace__symbols_init(struct trace *trace, struct perf_evlist *evlist)
1343 if (perf_target__has_task(&trace->opts.target)) { 1343 if (perf_target__has_task(&trace->opts.target)) {
1344 err = perf_event__synthesize_thread_map(&trace->tool, evlist->threads, 1344 err = perf_event__synthesize_thread_map(&trace->tool, evlist->threads,
1345 trace__tool_process, 1345 trace__tool_process,
1346 trace->host); 1346 trace->host, false);
1347 } else { 1347 } else {
1348 err = perf_event__synthesize_threads(&trace->tool, trace__tool_process, 1348 err = perf_event__synthesize_threads(&trace->tool, trace__tool_process,
1349 trace->host); 1349 trace->host, false);
1350 } 1350 }
1351 1351
1352 if (err) 1352 if (err)