From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759751AbcBTXTb (ORCPT ); Sat, 20 Feb 2016 18:19:31 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56638 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759731AbcBTXTZ (ORCPT ); Sat, 20 Feb 2016 18:19:25 -0500 Date: Sun, 21 Feb 2016 00:19:18 +0100 From: Jiri Olsa To: Namhyung Kim Cc: Arnaldo Carvalho de Melo , Ingo Molnar , Peter Zijlstra , Jiri Olsa , LKML , David Ahern , Andi Kleen , Stephane Eranian , Wang Nan Subject: Re: [PATCH v6 10/25] perf hists: Resort hist entries with hierarchy Message-ID: <20160220231918.GD17925@krava.homerouter.cpe> References: <1455631723-17345-1-git-send-email-namhyung@kernel.org> <1455631723-17345-11-git-send-email-namhyung@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1455631723-17345-11-git-send-email-namhyung@kernel.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Sat, 20 Feb 2016 23:19:25 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 16, 2016 at 11:08:28PM +0900, Namhyung Kim wrote: SNIP > @@ -1349,6 +1427,17 @@ static void output_resort(struct hists *hists, struct ui_progress *prog, > > min_callchain_hits = callchain_total * (callchain_param.min_percent / 100); > > + hists__reset_stats(hists); > + hists__reset_col_len(hists); > + > + if (symbol_conf.report_hierarchy) { > + return hists__hierarchy_output_resort(hists, prog, > + &hists->entries_collapsed, > + &hists->entries, > + min_callchain_hits, > + use_callchain); > + } > + > if (sort__need_collapse) > root = &hists->entries_collapsed; > else > @@ -1357,9 +1446,6 @@ static void output_resort(struct hists *hists, struct ui_progress *prog, > next = rb_first(root); > hists->entries = RB_ROOT; above line could be moved together with those 2 below and you can then remove *root_out = RB_ROOT; line in hists__hierarchy_output_resort jirka > > - hists__reset_stats(hists); > - hists__reset_col_len(hists); > - > while (next) { > n = rb_entry(next, struct hist_entry, rb_node_in); > next = rb_next(&n->rb_node_in); > -- > 2.7.1 >