From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751515AbaAERfv (ORCPT ); Sun, 5 Jan 2014 12:35:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28778 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751262AbaAERfu (ORCPT ); Sun, 5 Jan 2014 12:35:50 -0500 Date: Sun, 5 Jan 2014 18:35:33 +0100 From: Jiri Olsa To: Namhyung Kim Cc: Arnaldo Carvalho de Melo , Peter Zijlstra , Paul Mackerras , Ingo Molnar , Namhyung Kim , LKML , Arun Sharma , Frederic Weisbecker , Rodrigo Campos Subject: Re: [PATCH 11/21] perf ui/gtk: Add support to accumulated hist stat Message-ID: <20140105173533.GJ10018@krava.brq.redhat.com> References: <1387873347-28838-1-git-send-email-namhyung@kernel.org> <1387873347-28838-12-git-send-email-namhyung@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1387873347-28838-12-git-send-email-namhyung@kernel.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 24, 2013 at 05:22:17PM +0900, Namhyung Kim wrote: > From: Namhyung Kim > > Print accumulated stat of a hist entry if requested. > > Cc: Arun Sharma > Cc: Frederic Weisbecker > Signed-off-by: Namhyung Kim > --- > tools/perf/ui/gtk/hists.c | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > > diff --git a/tools/perf/ui/gtk/hists.c b/tools/perf/ui/gtk/hists.c > index 2ca66cc1160f..70ed0d5e1b94 100644 > --- a/tools/perf/ui/gtk/hists.c > +++ b/tools/perf/ui/gtk/hists.c > @@ -98,11 +98,25 @@ static int perf_gtk__hpp_color_##_type(struct perf_hpp_fmt *fmt __maybe_unused, > return __hpp__color_fmt(hpp, he, he_get_##_field); \ > } > > +#define __HPP_COLOR_ACC_PERCENT_FN(_type, _field) \ > +static u64 he_get_acc_##_field(struct hist_entry *he) \ > +{ \ > + return he->stat_acc->_field; \ > +} \ > + \ > +static int perf_gtk__hpp_color_##_type(struct perf_hpp_fmt *fmt __maybe_unused, \ > + struct perf_hpp *hpp, \ > + struct hist_entry *he) \ > +{ \ > + return __hpp__color_fmt(hpp, he, he_get_acc_##_field); \ > +} > + > __HPP_COLOR_PERCENT_FN(overhead, period) > __HPP_COLOR_PERCENT_FN(overhead_sys, period_sys) > __HPP_COLOR_PERCENT_FN(overhead_us, period_us) > __HPP_COLOR_PERCENT_FN(overhead_guest_sys, period_guest_sys) > __HPP_COLOR_PERCENT_FN(overhead_guest_us, period_guest_us) > +__HPP_COLOR_ACC_PERCENT_FN(overhead_acc, period) and same comment as for ui/hist.c in here jirka