diff options
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/perf/builtin-stat.c | 3 | ||||
| -rw-r--r-- | tools/perf/util/header.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index 7d98676808d8..955930e0a5c3 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c | |||
| @@ -463,7 +463,8 @@ static int run_perf_stat(int argc __used, const char **argv) | |||
| 463 | 463 | ||
| 464 | list_for_each_entry(counter, &evsel_list->entries, node) { | 464 | list_for_each_entry(counter, &evsel_list->entries, node) { |
| 465 | if (create_perf_stat_counter(counter, first) < 0) { | 465 | if (create_perf_stat_counter(counter, first) < 0) { |
| 466 | if (errno == EINVAL || errno == ENOSYS || errno == ENOENT) { | 466 | if (errno == EINVAL || errno == ENOSYS || |
| 467 | errno == ENOENT || errno == EOPNOTSUPP) { | ||
| 467 | if (verbose) | 468 | if (verbose) |
| 468 | ui__warning("%s event is not supported by the kernel.\n", | 469 | ui__warning("%s event is not supported by the kernel.\n", |
| 469 | event_name(counter)); | 470 | event_name(counter)); |
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index bcd05d05b4f0..33c17a2b2a81 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c | |||
| @@ -388,7 +388,7 @@ static int write_event_desc(int fd, struct perf_header *h __used, | |||
| 388 | /* | 388 | /* |
| 389 | * write event string as passed on cmdline | 389 | * write event string as passed on cmdline |
| 390 | */ | 390 | */ |
| 391 | ret = do_write_string(fd, attr->name); | 391 | ret = do_write_string(fd, event_name(attr)); |
| 392 | if (ret < 0) | 392 | if (ret < 0) |
| 393 | return ret; | 393 | return ret; |
| 394 | /* | 394 | /* |
