aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/evsel.c
diff options
context:
space:
mode:
authorRobert Richter <robert.richter@amd.com>2012-08-16 21:10:18 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-08-17 13:11:29 -0300
commitca1b145761e9355f90bfae1f42c9d9194702066b (patch)
tree632c16e3e55ca6b7225a9bd04b38ce66e37471c0 /tools/perf/util/evsel.c
parentperf tools: Fix type for evsel->ids and add size check for ids (diff)
downloadlinux-dev-ca1b145761e9355f90bfae1f42c9d9194702066b.tar.xz
linux-dev-ca1b145761e9355f90bfae1f42c9d9194702066b.zip
perf tools: Report number of pmu type of unknown events
If detection fails and an event name is unknown, report the type number. Example perf header output: # Samples: 10K of event 'unknown attr type: 7' Signed-off-by: Robert Richter <robert.richter@amd.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1345144224-27280-3-git-send-email-robert.richter@amd.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evsel.c')
-rw-r--r--tools/perf/util/evsel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c
index 6c7dcc1fde5a..7ff3c8fb736c 100644
--- a/tools/perf/util/evsel.c
+++ b/tools/perf/util/evsel.c
@@ -319,7 +319,8 @@ const char *perf_evsel__name(struct perf_evsel *evsel)
break;
default:
- scnprintf(bf, sizeof(bf), "%s", "unknown attr type");
+ scnprintf(bf, sizeof(bf), "unknown attr type: %d",
+ evsel->attr.type);
break;
}