ARM: kirkwood: Remove all remaining trace of DNS-320/325 platform code
[linux-2.6/btrfs-unstable.git] / tools / perf / builtin-evlist.c
blob05bd9dfe875cb95aeb6d2008b3319c2e8ca8f5eb
1 /*
2 * Builtin evlist command: Show the list of event selectors present
3 * in a perf.data file.
4 */
5 #include "builtin.h"
7 #include "util/util.h"
9 #include <linux/list.h>
11 #include "perf.h"
12 #include "util/evlist.h"
13 #include "util/evsel.h"
14 #include "util/parse-events.h"
15 #include "util/parse-options.h"
16 #include "util/session.h"
18 static int __cmd_evlist(const char *file_name, struct perf_attr_details *details)
20 struct perf_session *session;
21 struct perf_evsel *pos;
23 session = perf_session__new(file_name, O_RDONLY, 0, false, NULL);
24 if (session == NULL)
25 return -ENOMEM;
27 list_for_each_entry(pos, &session->evlist->entries, node)
28 perf_evsel__fprintf(pos, details, stdout);
30 perf_session__delete(session);
31 return 0;
34 int cmd_evlist(int argc, const char **argv, const char *prefix __maybe_unused)
36 struct perf_attr_details details = { .verbose = false, };
37 const struct option options[] = {
38 OPT_STRING('i', "input", &input_name, "file", "Input file name"),
39 OPT_BOOLEAN('F', "freq", &details.freq, "Show the sample frequency"),
40 OPT_BOOLEAN('v', "verbose", &details.verbose,
41 "Show all event attr details"),
42 OPT_BOOLEAN('g', "group", &details.event_group,
43 "Show event group information"),
44 OPT_END()
46 const char * const evlist_usage[] = {
47 "perf evlist [<options>]",
48 NULL
51 argc = parse_options(argc, argv, options, evlist_usage, 0);
52 if (argc)
53 usage_with_options(evlist_usage, options);
55 if (details.event_group && (details.verbose || details.freq)) {
56 pr_err("--group option is not compatible with other options\n");
57 usage_with_options(evlist_usage, options);
60 return __cmd_evlist(input_name, &details);