perf evlist: Fix the class prefix for 'struct evlist' branch_type methods
authorArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 17 Jun 2020 12:31:25 +0000 (09:31 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 22 Jun 2020 19:28:10 +0000 (16:28 -0300)
To differentiate from libperf's 'struct perf_evlist' methods.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-report.c
tools/perf/builtin-script.c
tools/perf/util/evlist.c
tools/perf/util/evlist.h

index 67e0692..ece1cdd 100644 (file)
@@ -410,8 +410,7 @@ static int report__setup_sample_type(struct report *rep)
        }
 
        /* ??? handle more cases than just ANY? */
-       if (!(perf_evlist__combined_branch_type(session->evlist) &
-                               PERF_SAMPLE_BRANCH_ANY))
+       if (!(evlist__combined_branch_type(session->evlist) & PERF_SAMPLE_BRANCH_ANY))
                rep->nonany_branch_mode = true;
 
 #if !defined(HAVE_LIBUNWIND_SUPPORT) && !defined(HAVE_DWARF_SUPPORT)
index a47d338..6613e2b 100644 (file)
@@ -443,8 +443,7 @@ static int evsel__check_attr(struct evsel *evsel, struct perf_session *session)
                return -EINVAL;
        }
        if (PRINT_FIELD(BRSTACKINSN) && !allow_user_set &&
-           !(perf_evlist__combined_branch_type(session->evlist) &
-             PERF_SAMPLE_BRANCH_ANY)) {
+           !(evlist__combined_branch_type(session->evlist) & PERF_SAMPLE_BRANCH_ANY)) {
                pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
                       "Hint: run 'perf record -b ...'\n");
                return -EINVAL;
index daae5c6..1b88469 100644 (file)
@@ -1123,7 +1123,7 @@ u64 evlist__combined_sample_type(struct evlist *evlist)
        return __evlist__combined_sample_type(evlist);
 }
 
-u64 perf_evlist__combined_branch_type(struct evlist *evlist)
+u64 evlist__combined_branch_type(struct evlist *evlist)
 {
        struct evsel *evsel;
        u64 branch_type = 0;
index 6c7b865..38901c0 100644 (file)
@@ -220,7 +220,7 @@ void perf_evlist__set_leader(struct evlist *evlist);
 
 u64 __evlist__combined_sample_type(struct evlist *evlist);
 u64 evlist__combined_sample_type(struct evlist *evlist);
-u64 perf_evlist__combined_branch_type(struct evlist *evlist);
+u64 evlist__combined_branch_type(struct evlist *evlist);
 bool evlist__sample_id_all(struct evlist *evlist);
 u16 perf_evlist__id_hdr_size(struct evlist *evlist);