]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
perf session: Change perf_session__has_traces to actually check for tracepoints
authorDavid Ahern <dsahern@gmail.com>
Thu, 8 Aug 2013 02:50:58 +0000 (22:50 -0400)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 12 Aug 2013 13:31:08 +0000 (10:31 -0300)
Any event can have RAW data attribute set. The intent of the function is
to determine if the session has tracepoints, so check for the type of
each event explicitly.

Signed-off-by: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1375930261-77273-17-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/session.c

index 5a8996493d94cb0230c12ba934ea6675e1e27754..4d9028eef34a9f5ae0ca827044c507e11244bea4 100644 (file)
@@ -1401,12 +1401,15 @@ int perf_session__process_events(struct perf_session *self,
 
 bool perf_session__has_traces(struct perf_session *session, const char *msg)
 {
-       if (!(perf_evlist__sample_type(session->evlist) & PERF_SAMPLE_RAW)) {
-               pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
-               return false;
+       struct perf_evsel *evsel;
+
+       list_for_each_entry(evsel, &session->evlist->entries, node) {
+               if (evsel->attr.type == PERF_TYPE_TRACEPOINT)
+                       return true;
        }
 
-       return true;
+       pr_err("No trace sample to read. Did you call 'perf %s'?\n", msg);
+       return false;
 }
 
 int maps__set_kallsyms_ref_reloc_sym(struct map **maps,