perf evsel: Rename perf_evsel__fallback() to evsel__fallback()

As it is a 'struct evsel' method, not part of tools/lib/perf/, aka
libperf, to whom the perf_ prefix belongs.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 4f138a9e
...@@ -845,7 +845,7 @@ static int record__open(struct record *rec) ...@@ -845,7 +845,7 @@ static int record__open(struct record *rec)
evlist__for_each_entry(evlist, pos) { evlist__for_each_entry(evlist, pos) {
try_again: try_again:
if (evsel__open(pos, pos->core.cpus, pos->core.threads) < 0) { if (evsel__open(pos, pos->core.cpus, pos->core.threads) < 0) {
if (perf_evsel__fallback(pos, errno, msg, sizeof(msg))) { if (evsel__fallback(pos, errno, msg, sizeof(msg))) {
if (verbose > 0) if (verbose > 0)
ui__warning("%s\n", msg); ui__warning("%s\n", msg);
goto try_again; goto try_again;
......
...@@ -466,7 +466,7 @@ static enum counter_recovery stat_handle_error(struct evsel *counter) ...@@ -466,7 +466,7 @@ static enum counter_recovery stat_handle_error(struct evsel *counter)
if ((counter->leader != counter) || if ((counter->leader != counter) ||
!(counter->leader->core.nr_members > 1)) !(counter->leader->core.nr_members > 1))
return COUNTER_SKIP; return COUNTER_SKIP;
} else if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) { } else if (evsel__fallback(counter, errno, msg, sizeof(msg))) {
if (verbose > 0) if (verbose > 0)
ui__warning("%s\n", msg); ui__warning("%s\n", msg);
return COUNTER_RETRY; return COUNTER_RETRY;
......
...@@ -1045,7 +1045,7 @@ static int perf_top__start_counters(struct perf_top *top) ...@@ -1045,7 +1045,7 @@ static int perf_top__start_counters(struct perf_top *top)
perf_top_overwrite_fallback(top, counter)) perf_top_overwrite_fallback(top, counter))
goto try_again; goto try_again;
if (perf_evsel__fallback(counter, errno, msg, sizeof(msg))) { if (evsel__fallback(counter, errno, msg, sizeof(msg))) {
if (verbose > 0) if (verbose > 0)
ui__warning("%s\n", msg); ui__warning("%s\n", msg);
goto try_again; goto try_again;
......
...@@ -28,7 +28,7 @@ int __weak sched_getcpu(void) ...@@ -28,7 +28,7 @@ int __weak sched_getcpu(void)
static int perf_flag_probe(void) static int perf_flag_probe(void)
{ {
/* use 'safest' configuration as used in perf_evsel__fallback() */ /* use 'safest' configuration as used in evsel__fallback() */
struct perf_event_attr attr = { struct perf_event_attr attr = {
.type = PERF_TYPE_SOFTWARE, .type = PERF_TYPE_SOFTWARE,
.config = PERF_COUNT_SW_CPU_CLOCK, .config = PERF_COUNT_SW_CPU_CLOCK,
......
...@@ -2382,8 +2382,7 @@ u64 evsel__intval(struct evsel *evsel, struct perf_sample *sample, const char *n ...@@ -2382,8 +2382,7 @@ u64 evsel__intval(struct evsel *evsel, struct perf_sample *sample, const char *n
return field ? format_field__intval(field, sample, evsel->needs_swap) : 0; return field ? format_field__intval(field, sample, evsel->needs_swap) : 0;
} }
bool perf_evsel__fallback(struct evsel *evsel, int err, bool evsel__fallback(struct evsel *evsel, int err, char *msg, size_t msgsize)
char *msg, size_t msgsize)
{ {
int paranoid; int paranoid;
......
...@@ -350,8 +350,7 @@ static inline bool evsel__is_clock(struct evsel *evsel) ...@@ -350,8 +350,7 @@ static inline bool evsel__is_clock(struct evsel *evsel)
evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK); evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK);
} }
bool perf_evsel__fallback(struct evsel *evsel, int err, bool evsel__fallback(struct evsel *evsel, int err, char *msg, size_t msgsize);
char *msg, size_t msgsize);
int perf_evsel__open_strerror(struct evsel *evsel, struct target *target, int perf_evsel__open_strerror(struct evsel *evsel, struct target *target,
int err, char *msg, size_t size); int err, char *msg, size_t size);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment