diff options
author | Namhyung Kim <[email protected]> | 2014-09-23 10:01:44 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2014-09-26 12:43:53 -0300 |
commit | 5a2e5e85989025a3bb23ea5571fdac0cc5787807 (patch) | |
tree | bdb5c56a2ce4b98001979cd0d5cab5ccc3c8669d | |
parent | 2b9240cafe9780f77b257321b13c4c4d2c2d0dc8 (diff) |
perf tools: Convert {record,top}.call-graph option to call-graph.record-mode
So that it'll be passed to perf_callchain_config().
Reviewed-by: David Ahern <[email protected]>
Signed-off-by: Namhyung Kim <[email protected]>
Acked-by: Jiri Olsa <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Milian Wolff <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/builtin-record.c | 2 | ||||
-rw-r--r-- | tools/perf/builtin-top.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index 0ee647bcd2ec..44c6f3d55ce7 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c @@ -673,7 +673,7 @@ int record_callchain_opt(const struct option *opt __maybe_unused, static int perf_record_config(const char *var, const char *value, void *cb) { if (!strcmp(var, "record.call-graph")) - return parse_callchain_record_opt(value); + var = "call-graph.record-mode"; /* fall-through */ return perf_default_config(var, value, cb); } diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 9d647a079d02..fc3d55f832ac 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c @@ -1021,7 +1021,7 @@ parse_callchain_opt(const struct option *opt, const char *arg, int unset) static int perf_top_config(const char *var, const char *value, void *cb) { if (!strcmp(var, "top.call-graph")) - return parse_callchain_record_opt(value); + var = "call-graph.record-mode"; /* fall-through */ if (!strcmp(var, "top.children")) { symbol_conf.cumulate_callchain = perf_config_bool(var, value); return 0; |