summaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-list.c
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2013-04-20 11:02:29 -0700
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-07-12 13:53:53 -0300
commitdc098b35b56f83ae088e4291a4e389a6ff126965 (patch)
tree485b4a870edc5b4bfeada71859c271cf1d9742cf /tools/perf/builtin-list.c
parent50e200f07948400694238e08e7add73df5ba8f83 (diff)
downloadlinux-dc098b35b56f83ae088e4291a4e389a6ff126965.tar.gz
linux-dc098b35b56f83ae088e4291a4e389a6ff126965.tar.xz
perf list: List kernel supplied event aliases
List the kernel supplied pmu event aliases in perf list It's better when the users can actually see them. Signed-off-by: Andi Kleen <ak@linux.intel.com> Link: http://lkml.kernel.org/r/1366480949-32292-2-git-send-email-andi@firstfloor.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-list.c')
-rw-r--r--tools/perf/builtin-list.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/builtin-list.c b/tools/perf/builtin-list.c
index 1948eceb517a..e79f423cc302 100644
--- a/tools/perf/builtin-list.c
+++ b/tools/perf/builtin-list.c
@@ -13,6 +13,7 @@
#include "util/parse-events.h"
#include "util/cache.h"
+#include "util/pmu.h"
int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
{
@@ -37,6 +38,8 @@ int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
else if (strcmp(argv[i], "cache") == 0 ||
strcmp(argv[i], "hwcache") == 0)
print_hwcache_events(NULL, false);
+ else if (strcmp(argv[i], "pmu") == 0)
+ print_pmu_events(NULL, false);
else if (strcmp(argv[i], "--raw-dump") == 0)
print_events(NULL, true);
else {