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>
This commit is contained in:
parent
b02736f776
commit
fd643db5a8
|
@ -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;
|
||||
|
|
|
@ -127,17 +127,6 @@ int __evlist__set_tracepoints_handlers(struct evlist *evlist,
|
|||
#define evlist__set_tracepoints_handlers(evlist, array) \
|
||||
__evlist__set_tracepoints_handlers(evlist, array, ARRAY_SIZE(array))
|
||||
|
||||
void __perf_evlist__set_sample_bit(struct evlist *evlist,
|
||||
enum perf_event_sample_format bit);
|
||||
void __perf_evlist__reset_sample_bit(struct evlist *evlist,
|
||||
enum perf_event_sample_format bit);
|
||||
|
||||
#define perf_evlist__set_sample_bit(evlist, bit) \
|
||||
__perf_evlist__set_sample_bit(evlist, PERF_SAMPLE_##bit)
|
||||
|
||||
#define perf_evlist__reset_sample_bit(evlist, bit) \
|
||||
__perf_evlist__reset_sample_bit(evlist, PERF_SAMPLE_##bit)
|
||||
|
||||
int evlist__set_tp_filter(struct evlist *evlist, const char *filter);
|
||||
int evlist__set_tp_filter_pid(struct evlist *evlist, pid_t pid);
|
||||
int evlist__set_tp_filter_pids(struct evlist *evlist, size_t npids, pid_t *pids);
|
||||
|
|
Loading…
Reference in New Issue