diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-08-05 19:15:48 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-08-05 19:38:01 -0300 |
commit | 903cce6eb9117550755de9bf92f3b48367b7dfe0 (patch) | |
tree | 17dc3d618a32ba139e8d3a5f7e66ce41da3380b1 /tools | |
parent | 76ce93d0b61fa8c61b9cd917d9f7190b40fb29b6 (diff) | |
download | op-kernel-dev-903cce6eb9117550755de9bf92f3b48367b7dfe0.zip op-kernel-dev-903cce6eb9117550755de9bf92f3b48367b7dfe0.tar.gz |
perf hists: Handle verbose in hists__sort_list_width
Otherwise entries will get chopped up on the window.
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/hist.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index e7263d4..62ec9b0 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -876,6 +876,9 @@ unsigned int hists__sort_list_width(struct hists *self) if (!se->elide) ret += 2 + hists__col_len(self, se->se_width_idx); + if (verbose) /* Addr + origin */ + ret += 3 + BITS_PER_LONG / 4; + return ret; } |