projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8b11a0
)
perf tools: Add default handler for mmap2 events
author
David Ahern
<dsahern@gmail.com>
Mon, 23 Sep 2013 01:44:59 +0000
(19:44 -0600)
committer
Arnaldo Carvalho de Melo
<acme@redhat.com>
Fri, 4 Oct 2013 18:16:04 +0000
(15:16 -0300)
Commands that do not implement an mmap2 handler should at least not die
with a segfault when processing files with MMAP2 events.
Signed-off-by: David Ahern <dsahern@gmail.com>
Link:
http://lkml.kernel.org/r/1379900700-5186-5-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/session.c
patch
|
blob
|
history
diff --git
a/tools/perf/util/session.c
b/tools/perf/util/session.c
index
70ffa41
..
37c4718
100644
(file)
--- a/
tools/perf/util/session.c
+++ b/
tools/perf/util/session.c
@@
-256,6
+256,8
@@
void perf_tool__fill_defaults(struct perf_tool *tool)
tool->sample = process_event_sample_stub;
if (tool->mmap == NULL)
tool->mmap = process_event_stub;
+ if (tool->mmap2 == NULL)
+ tool->mmap2 = process_event_stub;
if (tool->comm == NULL)
tool->comm = process_event_stub;
if (tool->fork == NULL)