Commit 05db6ff7 authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

perf machine: Generalize machine__set_kernel_mmap()

So it could be called without event object, just with start and end
values. It will be used in following patch.
Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20180215122635.24029-6-jolsa@kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 8c7f1bb3
...@@ -1262,15 +1262,15 @@ int machine__create_kernel_maps(struct machine *machine) ...@@ -1262,15 +1262,15 @@ int machine__create_kernel_maps(struct machine *machine)
return 0; return 0;
} }
static void machine__set_kernel_mmap_len(struct machine *machine, static void machine__set_kernel_mmap(struct machine *machine,
union perf_event *event) u64 start, u64 end)
{ {
int i; int i;
for (i = 0; i < MAP__NR_TYPES; i++) { for (i = 0; i < MAP__NR_TYPES; i++) {
machine->vmlinux_maps[i]->start = event->mmap.start; machine->vmlinux_maps[i]->start = start;
machine->vmlinux_maps[i]->end = (event->mmap.start + machine->vmlinux_maps[i]->end = end;
event->mmap.len);
/* /*
* Be a bit paranoid here, some perf.data file came with * Be a bit paranoid here, some perf.data file came with
* a zero sized synthesized MMAP event for the kernel. * a zero sized synthesized MMAP event for the kernel.
...@@ -1375,7 +1375,8 @@ static int machine__process_kernel_mmap_event(struct machine *machine, ...@@ -1375,7 +1375,8 @@ static int machine__process_kernel_mmap_event(struct machine *machine,
if (strstr(kernel->long_name, "vmlinux")) if (strstr(kernel->long_name, "vmlinux"))
dso__set_short_name(kernel, "[kernel.vmlinux]", false); dso__set_short_name(kernel, "[kernel.vmlinux]", false);
machine__set_kernel_mmap_len(machine, event); machine__set_kernel_mmap(machine, event->mmap.start,
event->mmap.start + event->mmap.len);
/* /*
* Avoid using a zero address (kptr_restrict) for the ref reloc * Avoid using a zero address (kptr_restrict) for the ref reloc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment