diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-09-26 12:46:11 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-10-07 12:11:49 -0300 |
commit | ef9dfe6ec3e409b68e35c05b882d636140bb3fa7 (patch) | |
tree | c7bdca5ac0fde2bc08c3f4f52ce19ccf0c3c86ca /tools/perf/builtin-diff.c | |
parent | 42b28ac071a1a239d2a48965e9d6be0e061dd103 (diff) | |
download | linux-3.10-ef9dfe6ec3e409b68e35c05b882d636140bb3fa7.tar.gz linux-3.10-ef9dfe6ec3e409b68e35c05b882d636140bb3fa7.tar.bz2 linux-3.10-ef9dfe6ec3e409b68e35c05b882d636140bb3fa7.zip |
perf hists: Allow limiting the number of rows and columns in fprintf
So that we can reuse hists__fprintf for in the new perf top tool.
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-huazw48x05h8r9niz5cf63za@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-diff.c')
-rw-r--r-- | tools/perf/builtin-diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-diff.c b/tools/perf/builtin-diff.c index e8219990f8b..b39f3a1ee7d 100644 --- a/tools/perf/builtin-diff.c +++ b/tools/perf/builtin-diff.c @@ -162,7 +162,7 @@ static int __cmd_diff(void) hists__match(&session[0]->hists, &session[1]->hists); hists__fprintf(&session[1]->hists, &session[0]->hists, - show_displacement, stdout); + show_displacement, true, 0, 0, stdout); out_delete: for (i = 0; i < 2; ++i) perf_session__delete(session[i]); |