OSDN Git Service

perf evlist: Use the right prefix for 'struct evlist' raw samples methods
authorArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 30 Nov 2020 18:11:10 +0000 (15:11 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 30 Nov 2020 18:15:30 +0000 (15:15 -0300)
perf_evlist__ is for 'struct perf_evlist' methods, in tools/lib/perf/,
go on completing this split.

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>
tools/perf/util/s390-sample-raw.c
tools/perf/util/sample-raw.c
tools/perf/util/sample-raw.h
tools/perf/util/session.c

index d177e61..cfcf8d5 100644 (file)
@@ -197,8 +197,7 @@ static void s390_cpumcfdg_dump(struct perf_sample *sample)
  * its raw data.
  * The function is only invoked when the dump flag -D is set.
  */
-void perf_evlist__s390_sample_raw(struct evlist *evlist, union perf_event *event,
-                                 struct perf_sample *sample)
+void evlist__s390_sample_raw(struct evlist *evlist, union perf_event *event, struct perf_sample *sample)
 {
        struct evsel *ev_bc000;
 
index e84bbe0..cde5cd3 100644 (file)
@@ -9,10 +9,10 @@
  * Check platform the perf data file was created on and perform platform
  * specific interpretation.
  */
-void perf_evlist__init_trace_event_sample_raw(struct evlist *evlist)
+void evlist__init_trace_event_sample_raw(struct evlist *evlist)
 {
        const char *arch_pf = perf_env__arch(evlist->env);
 
        if (arch_pf && !strcmp("s390", arch_pf))
-               evlist->trace_event_sample_raw = perf_evlist__s390_sample_raw;
+               evlist->trace_event_sample_raw = evlist__s390_sample_raw;
 }
index afe1491..4be84a5 100644 (file)
@@ -6,9 +6,6 @@ struct evlist;
 union perf_event;
 struct perf_sample;
 
-void perf_evlist__s390_sample_raw(struct evlist *evlist,
-                                 union perf_event *event,
-                                 struct perf_sample *sample);
-
-void perf_evlist__init_trace_event_sample_raw(struct evlist *evlist);
+void evlist__s390_sample_raw(struct evlist *evlist, union perf_event *event, struct perf_sample *sample);
+void evlist__init_trace_event_sample_raw(struct evlist *evlist);
 #endif /* __PERF_EVLIST_H */
index bf10576..83de320 100644 (file)
@@ -221,7 +221,7 @@ struct perf_session *perf_session__new(struct perf_data *data,
                                perf_session__set_comm_exec(session);
                        }
 
-                       perf_evlist__init_trace_event_sample_raw(session->evlist);
+                       evlist__init_trace_event_sample_raw(session->evlist);
 
                        /* Open the directory data. */
                        if (data->is_dir) {