aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/util/parse-events.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c
index 3a3efcf3e4e9..c0b785b50849 100644
--- a/tools/perf/util/parse-events.c
+++ b/tools/perf/util/parse-events.c
@@ -827,8 +827,6 @@ int parse_events(struct perf_evlist *evlist, const char *str,
827 * Both call perf_evlist__delete in case of error, so we dont 827 * Both call perf_evlist__delete in case of error, so we dont
828 * need to bother. 828 * need to bother.
829 */ 829 */
830 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
831 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
832 return ret; 830 return ret;
833} 831}
834 832
@@ -836,7 +834,13 @@ int parse_events_option(const struct option *opt, const char *str,
836 int unset __maybe_unused) 834 int unset __maybe_unused)
837{ 835{
838 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value; 836 struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
839 return parse_events(evlist, str, unset); 837 int ret = parse_events(evlist, str, unset);
838
839 if (ret) {
840 fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
841 fprintf(stderr, "Run 'perf list' for a list of valid events\n");
842 }
843 return ret;
840} 844}
841 845
842int parse_filter(const struct option *opt, const char *str, 846int parse_filter(const struct option *opt, const char *str,