1
0
Fork 0

perf evsel: Rename perf_evsel__new() to evsel__new()

Rename perf_evsel__new() to evsel__new(), so we don't have a name clash
when we add perf_evsel__new() in libperf.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190721112506.12306-12-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
alistair/sunxi64-5.4-dsi
Jiri Olsa 2019-07-21 13:23:58 +02:00 committed by Arnaldo Carvalho de Melo
parent 5eb2dd2ade
commit 365c3ae745
6 changed files with 7 additions and 7 deletions

View File

@ -2657,7 +2657,7 @@ static struct evsel *perf_evsel__new_pgfault(u64 config)
event_attr_init(&attr);
evsel = perf_evsel__new(&attr);
evsel = evsel__new(&attr);
if (evsel)
evsel->handler = trace__pgfault;

View File

@ -49,7 +49,7 @@ static int __test__sw_clock_freq(enum perf_sw_ids clock_id)
return -1;
}
evsel = perf_evsel__new(&attr);
evsel = evsel__new(&attr);
if (evsel == NULL) {
pr_debug("perf_evsel__new\n");
goto out_delete_evlist;

View File

@ -301,7 +301,7 @@ struct evsel *perf_evsel__new_cycles(bool precise)
* to kick in when we return and before perf_evsel__open() is called.
*/
new_event:
evsel = perf_evsel__new(&attr);
evsel = evsel__new(&attr);
if (evsel == NULL)
goto out;

View File

@ -219,7 +219,7 @@ int perf_evsel__object_config(size_t object_size,
struct evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx);
static inline struct evsel *perf_evsel__new(struct perf_event_attr *attr)
static inline struct evsel *evsel__new(struct perf_event_attr *attr)
{
return perf_evsel__new_idx(attr, 0);
}

View File

@ -3583,7 +3583,7 @@ int perf_session__read_header(struct perf_session *session)
}
tmp = lseek(fd, 0, SEEK_CUR);
evsel = perf_evsel__new(&f_attr.attr);
evsel = evsel__new(&f_attr.attr);
if (evsel == NULL)
goto out_delete_evlist;
@ -4021,7 +4021,7 @@ int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
return -ENOMEM;
}
evsel = perf_evsel__new(&event->attr.attr);
evsel = evsel__new(&event->attr.attr);
if (evsel == NULL)
return -ENOMEM;

View File

@ -2318,7 +2318,7 @@ static bool is_event_supported(u8 type, unsigned config)
if (tmap == NULL)
return false;
evsel = perf_evsel__new(&attr);
evsel = evsel__new(&attr);
if (evsel) {
open_return = perf_evsel__open(evsel, NULL, tmap);
ret = open_return >= 0;