diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-11-19 23:51:34 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-11-19 23:51:34 +0300 |
commit | 1f74b100c9d9406fa12b22675c6b2111e5f60e9c (patch) | |
tree | dc09dbdbd19cb335491c9cfd986d645842251581 /tools | |
parent | 7b59a82493b49b715224bfe3b35fae52e48e5fa1 (diff) | |
download | linux-1f74b100c9d9406fa12b22675c6b2111e5f60e9c.tar.xz |
perf dsos: Remove unused dsos__find() method
Not used anywhere, nuke it.
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-teqz0eqcw43mnt7i3me44esw@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/dsos.c | 9 | ||||
-rw-r--r-- | tools/perf/util/dsos.h | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/tools/perf/util/dsos.c b/tools/perf/util/dsos.c index ecf8d7346685..1d38d6ac6e5a 100644 --- a/tools/perf/util/dsos.c +++ b/tools/perf/util/dsos.c @@ -159,15 +159,6 @@ struct dso *__dsos__find(struct dsos *dsos, const char *name, bool cmp_short) return __dsos__findnew_by_longname(&dsos->root, name); } -struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short) -{ - struct dso *dso; - down_read(&dsos->lock); - dso = __dsos__find(dsos, name, cmp_short); - up_read(&dsos->lock); - return dso; -} - static void dso__set_basename(struct dso *dso) { char *base, *lname; diff --git a/tools/perf/util/dsos.h b/tools/perf/util/dsos.h index 32f1fbee0feb..fd7ba51fc965 100644 --- a/tools/perf/util/dsos.h +++ b/tools/perf/util/dsos.h @@ -24,7 +24,6 @@ void __dsos__add(struct dsos *dsos, struct dso *dso); void dsos__add(struct dsos *dsos, struct dso *dso); struct dso *__dsos__addnew(struct dsos *dsos, const char *name); struct dso *__dsos__find(struct dsos *dsos, const char *name, bool cmp_short); -struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short); struct dso *__dsos__findnew(struct dsos *dsos, const char *name); struct dso *dsos__findnew(struct dsos *dsos, const char *name); |