From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752933Ab2K2H4I (ORCPT ); Thu, 29 Nov 2012 02:56:08 -0500 Received: from LGEMRELSE7Q.lge.com ([156.147.1.151]:57938 "EHLO LGEMRELSE7Q.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752071Ab2K2H4H (ORCPT ); Thu, 29 Nov 2012 02:56:07 -0500 X-AuditID: 9c930197-b7bd3ae000003f1c-24-50b71515915a From: Namhyung Kim To: Jiri Olsa Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Peter Zijlstra , Ingo Molnar , Paul Mackerras , Corey Ashford , Frederic Weisbecker Subject: Re: [PATCH 03/14] perf tool: Fix period symbol_conf.field_sep display References: <1354110769-2998-1-git-send-email-jolsa@redhat.com> <1354110769-2998-4-git-send-email-jolsa@redhat.com> Date: Thu, 29 Nov 2012 16:56:04 +0900 In-Reply-To: <1354110769-2998-4-git-send-email-jolsa@redhat.com> (Jiri Olsa's message of "Wed, 28 Nov 2012 14:52:38 +0100") Message-ID: <878v9kq1uz.fsf@sejong.aot.lge.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Brightmail-Tracker: AAAAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 28 Nov 2012 14:52:38 +0100, Jiri Olsa wrote: > Currently we don't properly display hist data with > symbol_conf.field_sep separator. We need to display > either space or separator. > > Signed-off-by: Jiri Olsa > Cc: Arnaldo Carvalho de Melo > Cc: Peter Zijlstra > Cc: Ingo Molnar > Cc: Paul Mackerras > Cc: Corey Ashford > Cc: Frederic Weisbecker > Cc: Namhyung Kim > --- > tools/perf/ui/hist.c | 8 ++------ > 1 file changed, 2 insertions(+), 6 deletions(-) > > diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c > index 5452960..20a4392 100644 > --- a/tools/perf/ui/hist.c > +++ b/tools/perf/ui/hist.c > @@ -523,17 +523,13 @@ int hist_entry__period_snprintf(struct perf_hpp *hpp, struct hist_entry *he, > struct perf_hpp_fmt *fmt; > char *start = hpp->buf; > int ret; > - bool first = true; > > if (symbol_conf.exclude_other && !he->parent) > return 0; > > perf_hpp__for_each_format(fmt) { > - if (!sep || !first) { > - ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " "); > - advance_hpp(hpp, ret); > - first = false; > - } > + ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " "); > + advance_hpp(hpp, ret); It will display the separator even before the first column so that the output can be messed up with this. I can see that there's a bug setting 'first' to false - the line should be moved out of the block otherwise it's pointless since we cannot enter the block. Thanks, Namhyung > > if (color && fmt->color) > ret = fmt->color(fmt, hpp, he);