aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-annotate.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <[email protected]>2011-02-05 17:37:31 +0000
committerArnaldo Carvalho de Melo <[email protected]>2011-02-05 17:37:31 +0000
commitd040bd363824f9f0ad6610b91ee6c65f292c066c (patch)
treee0e4215e44e7971ea7901d57de5dce7369a87e6b /tools/perf/builtin-annotate.c
parentperf annotate: Support multiple histograms in annotation (diff)
downloadkernel-d040bd363824f9f0ad6610b91ee6c65f292c066c.tar.gz
kernel-d040bd363824f9f0ad6610b91ee6c65f292c066c.zip
perf annotate: Config options for symbol__tty_annotate
Max line# that should be printed, minimum percentage filter, just like 'perf top', alas, due to it :-) Cc: Frederic Weisbecker <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Stephane Eranian <[email protected]> Cc: Tom Zanussi <[email protected]> LKML-Reference: <new-submission> Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r--tools/perf/builtin-annotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c
index f3e44231b10d..ea6a1165956f 100644
--- a/tools/perf/builtin-annotate.c
+++ b/tools/perf/builtin-annotate.c
@@ -95,7 +95,7 @@ static int process_sample_event(union perf_event *event,
static int hist_entry__tty_annotate(struct hist_entry *he, int evidx)
{
return symbol__tty_annotate(he->ms.sym, he->ms.map, evidx,
- print_line, full_paths);
+ print_line, full_paths, 0, 0);
}
static void hists__find_annotations(struct hists *self)