From 3c3f2fe768aa2081e9a17f0d48f8674498d87ae7 Mon Sep 17 00:00:00 2001 From: Arnaldo Carvalho de Melo Date: Thu, 20 Oct 2011 07:35:45 -0200 Subject: [PATCH] --- yaml --- r: 269122 b: refs/heads/master c: d197fd5d743289e90c160c8c17460b390d862b98 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/tools/perf/util/hist.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index 66238733cac8..440025bfda86 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c64550cfddfdbd7a6f9d5ffb37382a05d7f0306b +refs/heads/master: d197fd5d743289e90c160c8c17460b390d862b98 diff --git a/trunk/tools/perf/util/hist.c b/trunk/tools/perf/util/hist.c index 1f269fd48944..f6a993963a1e 100644 --- a/trunk/tools/perf/util/hist.c +++ b/trunk/tools/perf/util/hist.c @@ -725,7 +725,8 @@ void hists__output_recalc_col_len(struct hists *hists, int max_rows) while (next && row++ < max_rows) { n = rb_entry(next, struct hist_entry, rb_node); - hists__calc_col_len(hists, n); + if (!n->filtered) + hists__calc_col_len(hists, n); next = rb_next(&n->rb_node); } }