diff options
author | David Ahern <dsahern@gmail.com> | 2013-08-07 22:50:53 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-08-12 09:31:08 -0400 |
commit | 307cbb92aa2bdc9eed7c74409ff4d5fc9135b4e2 (patch) | |
tree | 6bb79444961ea376caaa27ccd8ce01e37068f684 /tools/perf/builtin-script.c | |
parent | b0b35f0179161a5e256eebffa274b0b6f023f451 (diff) |
perf evsel: Add option to limit stack depth in callchain dumps
Option is used by upcoming timehist command.
Signed-off-by: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1375930261-77273-12-git-send-email-dsahern@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-script.c')
-rw-r--r-- | tools/perf/builtin-script.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index ee5d6f8b7415..33b2d830eabd 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c | |||
@@ -402,7 +402,8 @@ static void print_sample_bts(union perf_event *event, | |||
402 | else | 402 | else |
403 | printf("\n"); | 403 | printf("\n"); |
404 | perf_evsel__print_ip(evsel, event, sample, machine, | 404 | perf_evsel__print_ip(evsel, event, sample, machine, |
405 | output[attr->type].print_ip_opts); | 405 | output[attr->type].print_ip_opts, |
406 | PERF_MAX_STACK_DEPTH); | ||
406 | } | 407 | } |
407 | 408 | ||
408 | printf(" => "); | 409 | printf(" => "); |
@@ -444,7 +445,8 @@ static void process_event(union perf_event *event, struct perf_sample *sample, | |||
444 | printf("\n"); | 445 | printf("\n"); |
445 | 446 | ||
446 | perf_evsel__print_ip(evsel, event, sample, machine, | 447 | perf_evsel__print_ip(evsel, event, sample, machine, |
447 | output[attr->type].print_ip_opts); | 448 | output[attr->type].print_ip_opts, |
449 | PERF_MAX_STACK_DEPTH); | ||
448 | } | 450 | } |
449 | 451 | ||
450 | printf("\n"); | 452 | printf("\n"); |