diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-04-25 12:18:11 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-04-26 13:47:11 -0300 |
commit | 1d1a2654fffe1e5a80479ed4b6202467d2d0db46 (patch) | |
tree | 7481062b1199ff98e35c5976a1c21166d47351fb /tools/perf/util/machine.h | |
parent | 329f0adef39aedb8ac4be279c3394f32b53b1a88 (diff) | |
download | linux-1d1a2654fffe1e5a80479ed4b6202467d2d0db46.tar.gz linux-1d1a2654fffe1e5a80479ed4b6202467d2d0db46.tar.bz2 linux-1d1a2654fffe1e5a80479ed4b6202467d2d0db46.zip |
perf machine: Remove needless map_type from machine__load_vmlinux_path()
Since it uses machine__kernel_map() and this function always returns the
MAP__FUNCTION map, it doesn't make sense to call it with MAP__VARIABLE.
And also this is a step in the direction of nuking the MAP__{FUNCTION,VARIABLE}
split.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-0h3eof3kx3kq32ixg5fquf3p@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/machine.h')
-rw-r--r-- | tools/perf/util/machine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/machine.h b/tools/perf/util/machine.h index dc95404959ee..ac3b8403df2e 100644 --- a/tools/perf/util/machine.h +++ b/tools/perf/util/machine.h @@ -245,7 +245,7 @@ static inline int machine__load_kallsyms(struct machine *machine, const char *fi return __machine__load_kallsyms(machine, filename, MAP__FUNCTION); } -int machine__load_vmlinux_path(struct machine *machine, enum map_type type); +int machine__load_vmlinux_path(struct machine *machine); size_t machine__fprintf_dsos_buildid(struct machine *machine, FILE *fp, bool (skip)(struct dso *dso, int parm), int parm); |