Messages in this thread Patch in this message |  | | From | David Ahern <> | | Subject | [PATCH 4/5] perf tool: Add default handler for mmap2 events | | Date | Sun, 22 Sep 2013 19:44:59 -0600 |
| |
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> --- tools/perf/util/session.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index 78646da..6c1d444 100644 --- 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) -- 1.7.10.1
|  |