diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-11-30 15:54:08 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-11-30 15:54:08 +0300 |
commit | fd643db5a8797dde0fe8d6f2fd01f36971d43fe0 (patch) | |
tree | a9e992e7894abad0d87919d44fd97af60afdf2c4 /tools/perf/util/evlist.c | |
parent | b02736f776d5f50bb13ff85eb34efaed0c3f5ffa (diff) | |
download | linux-fd643db5a8797dde0fe8d6f2fd01f36971d43fe0.tar.xz |
perf evlist: Ditch unused set/reset sample_bit methods
Not used anymore, ditch them.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evlist.c')
-rw-r--r-- | tools/perf/util/evlist.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c index e6b2715ad31d..86172ee394d0 100644 --- a/tools/perf/util/evlist.c +++ b/tools/perf/util/evlist.c @@ -953,24 +953,6 @@ out_delete_threads: return -1; } -void __perf_evlist__set_sample_bit(struct evlist *evlist, - enum perf_event_sample_format bit) -{ - struct evsel *evsel; - - evlist__for_each_entry(evlist, evsel) - __evsel__set_sample_bit(evsel, bit); -} - -void __perf_evlist__reset_sample_bit(struct evlist *evlist, - enum perf_event_sample_format bit) -{ - struct evsel *evsel; - - evlist__for_each_entry(evlist, evsel) - __evsel__reset_sample_bit(evsel, bit); -} - int evlist__apply_filters(struct evlist *evlist, struct evsel **err_evsel) { struct evsel *evsel; |