]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
perf tools: Move parse_events error printing to parse_events_options
authorAndi Kleen <ak@linux.intel.com>
Fri, 26 Oct 2012 20:30:06 +0000 (13:30 -0700)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sun, 28 Oct 2012 13:29:52 +0000 (11:29 -0200)
The callers of parse_events usually have their own error handling.  Move
the fprintf for a bad event to parse_events_options, which is the only
one who should need it.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1351283415-13170-25-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/parse-events.c

index 3a3efcf3e4e9703a11430d3c07f224d4889c6637..c0b785b508496f545648b280ea4e318a425b7920 100644 (file)
@@ -827,8 +827,6 @@ int parse_events(struct perf_evlist *evlist, const char *str,
         * Both call perf_evlist__delete in case of error, so we dont
         * need to bother.
         */
-       fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
-       fprintf(stderr, "Run 'perf list' for a list of valid events\n");
        return ret;
 }
 
@@ -836,7 +834,13 @@ int parse_events_option(const struct option *opt, const char *str,
                        int unset __maybe_unused)
 {
        struct perf_evlist *evlist = *(struct perf_evlist **)opt->value;
-       return parse_events(evlist, str, unset);
+       int ret = parse_events(evlist, str, unset);
+
+       if (ret) {
+               fprintf(stderr, "invalid or unsupported event: '%s'\n", str);
+               fprintf(stderr, "Run 'perf list' for a list of valid events\n");
+       }
+       return ret;
 }
 
 int parse_filter(const struct option *opt, const char *str,