aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/util/symbol.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
index d22030828c21..c324bdf8baba 100644
--- a/tools/perf/util/symbol.c
+++ b/tools/perf/util/symbol.c
@@ -884,6 +884,11 @@ out_close:
884 return err; 884 return err;
885} 885}
886 886
887static bool dso__build_id_equal(const struct dso *self, u8 *build_id)
888{
889 return memcmp(self->build_id, build_id, sizeof(self->build_id)) == 0;
890}
891
887bool dsos__read_build_ids(void) 892bool dsos__read_build_ids(void)
888{ 893{
889 bool have_build_id = false; 894 bool have_build_id = false;
@@ -1099,8 +1104,7 @@ more:
1099 sizeof(build_id)) < 0) 1104 sizeof(build_id)) < 0)
1100 goto more; 1105 goto more;
1101compare_build_id: 1106compare_build_id:
1102 if (memcmp(build_id, self->build_id, 1107 if (!dso__build_id_equal(self, build_id))
1103 sizeof(self->build_id)) != 0)
1104 goto more; 1108 goto more;
1105 } 1109 }
1106 1110