diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-10-22 17:10:52 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-10-22 17:10:52 -0400 |
commit | f06cff7c59b6b252d667435d7baad48687b41002 (patch) | |
tree | eee276fd27aeae2e92e2aff91cb4a3af87a792fa /tools/perf/ui/browsers/annotate.c | |
parent | 464b01a48eb6be48bc58332e029760b5e40ea119 (diff) |
perf annotate: Don't die() when finding an invalid config option
The perf_config() infrastructure we inherited from git calls die() when
the provided config callback returns -1, meaning some key in a config
section is unexpected, that seems ok for a stdio based tool, but in
--tui we end up messing up the output, so just tell the user about the
error, wait for a keystroke and return 0, being more resilient and
proceeding with what we managed to parse.
That die() needs to die, tho :-)
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-pqtsffh2kwr5mwm4qg9kgotu@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/ui/browsers/annotate.c')
-rw-r--r-- | tools/perf/ui/browsers/annotate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c index ba72e018e99a..d4d7cc27252f 100644 --- a/tools/perf/ui/browsers/annotate.c +++ b/tools/perf/ui/browsers/annotate.c | |||
@@ -1152,9 +1152,9 @@ static int annotate__config(const char *var, const char *value, | |||
1152 | sizeof(struct annotate_config), annotate_config__cmp); | 1152 | sizeof(struct annotate_config), annotate_config__cmp); |
1153 | 1153 | ||
1154 | if (cfg == NULL) | 1154 | if (cfg == NULL) |
1155 | return -1; | 1155 | ui__warning("%s variable unknown, ignoring...", var); |
1156 | 1156 | else | |
1157 | *cfg->value = perf_config_bool(name, value); | 1157 | *cfg->value = perf_config_bool(name, value); |
1158 | return 0; | 1158 | return 0; |
1159 | } | 1159 | } |
1160 | 1160 | ||