summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/hist.c
diff options
context:
space:
mode:
authorIngo Molnar2010-08-06 09:00:32 +0200
committerIngo Molnar2010-08-06 09:00:32 +0200
commite66b688c6456e6a607a1636e228fe0395d6c7214 (patch)
treebcdd5a9d23d78d91419b3b61de76a5b9fb955008 /tools/perf/util/hist.c
parentoprofile: add support for Intel processor model 30 (diff)
parentperf report: Speed up exit path (diff)
downloadkernel-qcow2-linux-e66b688c6456e6a607a1636e228fe0395d6c7214.tar.gz
kernel-qcow2-linux-e66b688c6456e6a607a1636e228fe0395d6c7214.tar.xz
kernel-qcow2-linux-e66b688c6456e6a607a1636e228fe0395d6c7214.zip
Merge branch 'perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 into perf/core
Diffstat (limited to 'tools/perf/util/hist.c')
-rw-r--r--tools/perf/util/hist.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
index e7263d49bcf0..62ec9b0e4b9a 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;
}