aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/map.h
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2019-11-19 16:30:56 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-11-19 16:30:56 -0300
commit7b59a82493b49b715224bfe3b35fae52e48e5fa1 (patch)
tree19ea4fc7681d4806d13b3f0c5b63620abbd91698 /tools/perf/util/map.h
parentperf map: Pass a dso_id to map__new() (diff)
downloadlinux-dev-7b59a82493b49b715224bfe3b35fae52e48e5fa1.tar.xz
linux-dev-7b59a82493b49b715224bfe3b35fae52e48e5fa1.zip
perf map: Move comparision of map's dso_id to a separate function
We'll use it when doing DSO lookups using dso_ids. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-u2nr1oq03o0i29w2ay9jx03s@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/map.h')
-rw-r--r--tools/perf/util/map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/map.h b/tools/perf/util/map.h
index f962eb9035c7..e1e573a28a55 100644
--- a/tools/perf/util/map.h
+++ b/tools/perf/util/map.h
@@ -28,6 +28,8 @@ struct dso_id {
u64 ino_generation;
};
+int dso_id__cmp(struct dso_id *a, struct dso_id *b);
+
struct map {
union {
struct rb_node rb_node;