From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753487AbbG3Nxg (ORCPT ); Thu, 30 Jul 2015 09:53:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36576 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751200AbbG3Nxe (ORCPT ); Thu, 30 Jul 2015 09:53:34 -0400 Date: Thu, 30 Jul 2015 15:53:31 +0200 From: Jiri Olsa To: Andi Kleen Cc: acme@kernel.org, jolsa@kernel.org, eranian@google.com, linux-kernel@vger.kernel.org, Andi Kleen Subject: Re: [PATCH 3/4] perf, tools, stat: Add support for metrics in interval mode Message-ID: <20150730135331.GQ9606@krava.brq.redhat.com> References: <1438215700-5530-1-git-send-email-andi@firstfloor.org> <1438215700-5530-4-git-send-email-andi@firstfloor.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1438215700-5530-4-git-send-email-andi@firstfloor.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jul 29, 2015 at 05:21:39PM -0700, Andi Kleen wrote: SNIP > case AGGR_SOCKET: > - fprintf(output, "# time socket cpus counts %*s events\n", unit_width, "unit"); > + fprintf(output, "# time socket cpus counts %*s events metric multiplex\n", > + unit_width, "unit"); > break; > case AGGR_CORE: > - fprintf(output, "# time core cpus counts %*s events\n", unit_width, "unit"); > + fprintf(output, "# time core cpus counts %*s events metric multiplex\n", > + unit_width, "unit"); > break; > case AGGR_NONE: > - fprintf(output, "# time CPU counts %*s events\n", unit_width, "unit"); > + fprintf(output, "# time CPU counts %*s events metric multiplex\n", > + unit_width, "unit"); > break; > case AGGR_THREAD: > - fprintf(output, "# time comm-pid counts %*s events\n", unit_width, "unit"); > + fprintf(output, "# time comm-pid counts %*s events metric\n", > + unit_width, "unit"); > break; > case AGGR_GLOBAL: > default: > - fprintf(output, "# time counts %*s events\n", unit_width, "unit"); > + fprintf(output, "# time counts %*s events metric multiplex\n", > + unit_width, "unit"); can't see why those header display is adjusted jirka