public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: linux-kernel@vger.kernel.org,
	Adrian Hunter <adrian.hunter@intel.com>,
	Alexander Yarygin <yarygin@linux.vnet.ibm.com>,
	Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	Corey Ashford <cjashfor@linux.vnet.ibm.com>,
	Cornelia Huck <cornelia.huck@de.ibm.com>,
	David Ahern <dsahern@gmail.com>, Don Zickus <dzickus@redhat.com>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	Jiri Olsa <jolsa@redhat.com>, Mike Galbraith <efault@gmx.de>,
	Namhyung Kim <namhyung@kernel.org>,
	Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Stanislav Fomichev <stfomichev@yandex-team.ru>,
	Stephane Eranian <eranian@google.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/16] perf/cor improvements and fixes
Date: Wed, 16 Jul 2014 13:47:48 +0200	[thread overview]
Message-ID: <20140716114748.GA28434@gmail.com> (raw)
In-Reply-To: <1404846184-20075-1-git-send-email-acme@kernel.org>


* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:

> Hi Ingo,
> 
> 	Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 8b5b584daf3b92fc5cdc83919e64231817d2f5a7:
> 
>   Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf into perf/core (2014-07-05 11:29:32 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo
> 
> for you to fetch changes up to 4414a3c51028aea2ae2fe06c0377490eaa6abbfd:
> 
>   perf trace: Fix build on 32-bit systems (2014-07-08 15:39:21 -0300)
> 
> ----------------------------------------------------------------
> perf/core improvements and fixes
> 
> User visible:
> 
> o Prep patches to support 'perf kvm stat' on s390 (Alexander Yarygin)
> 
> o Add pagefault statistics in 'trace' (Stanislav Fomichev)
> 
> o Add header for columns in 'top' and 'report' TUI browsers (Jiri Olsa)
> 
> o Add pagefault statistics in 'trace' (Stanislav Fomichev)
> 
> Build fixes:
> 
> Fix build on 32-bit systems (Arnaldo Carvalho de Melo)
> 
> Cleanups:
> 
> o Convert open coded equivalents to asprintf() (Andy Shevchenko)
> 
> Plumbing:
> 
> o Allow reserving a row for header purposes in the hists browser (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Alexander Yarygin (4):
>       perf kvm: Introduce HAVE_KVM_STAT_SUPPORT flag
>       perf kvm: Simplify exit reasons tables definitions
>       perf kvm: Refactoring of cpu_isa_config()
>       perf tools: Allow to use cpuinfo on s390
> 
> Andy Shevchenko (1):
>       perf tools: Convert open coded equivalents to asprintf()
> 
> Arnaldo Carvalho de Melo (8):
>       perf ui browser: Add ->rows to disambiguate from ->height
>       perf ui browser: Allow overriding refresh_dimensions method
>       perf hists browser: Introduce gotorc method
>       perf hists browser: Override ui_browser refresh_dimensions method
>       perf hists browser: Add support for showing columns header
>       perf hists browser: Left justify column headers
>       perf tools: Suggest using -f to override perf.data file ownership message
>       perf trace: Fix build on 32-bit systems
> 
> Jiri Olsa (2):
>       perf hists browser: Display columns header text on 'H' press
>       perf hists browser: Add ui.show-headers config file option
> 
> Stanislav Fomichev (1):
>       perf trace: Add pagefault statistics
> 
>  tools/perf/arch/s390/Makefile      |   1 +
>  tools/perf/arch/s390/util/header.c |  28 ++++++++
>  tools/perf/arch/x86/Makefile       |   1 +
>  tools/perf/builtin-kvm.c           |  72 +++++++++++----------
>  tools/perf/builtin-trace.c         |  23 ++++++-
>  tools/perf/config/Makefile         |   4 ++
>  tools/perf/perf-sys.h              |   1 +
>  tools/perf/ui/browser.c            |  37 ++++++-----
>  tools/perf/ui/browser.h            |   3 +-
>  tools/perf/ui/browsers/hists.c     | 128 ++++++++++++++++++++++++++++++++-----
>  tools/perf/util/config.c           |  13 ++++
>  tools/perf/util/data.c             |   2 +-
>  tools/perf/util/sort.c             |   2 +-
>  tools/perf/util/symbol.c           |   1 +
>  tools/perf/util/symbol.h           |   3 +-
>  tools/perf/util/trace-event-info.c |  12 +---
>  tools/perf/util/util.c             |   9 +--
>  17 files changed, 249 insertions(+), 91 deletions(-)
>  create mode 100644 tools/perf/arch/s390/util/header.c

Pulled, thanks a lot Arnaldo!

	Ingo

      parent reply	other threads:[~2014-07-16 11:48 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-08 19:02 [GIT PULL 00/16] perf/cor improvements and fixes Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 01/16] perf ui browser: Add ->rows to disambiguate from ->height Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 02/16] perf ui browser: Allow overriding refresh_dimensions method Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 03/16] perf hists browser: Introduce gotorc method Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 04/16] perf hists browser: Override ui_browser refresh_dimensions method Arnaldo Carvalho de Melo
2014-07-09 22:48   ` Jiri Olsa
2014-07-10 13:50     ` Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 05/16] perf hists browser: Add support for showing columns header Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 06/16] perf hists browser: Display columns header text on 'H' press Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 07/16] perf hists browser: Add ui.show-headers config file option Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 08/16] perf hists browser: Left justify column headers Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 09/16] perf kvm: Introduce HAVE_KVM_STAT_SUPPORT flag Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 10/16] perf kvm: Simplify exit reasons tables definitions Arnaldo Carvalho de Melo
2014-07-08 19:02 ` [PATCH 11/16] perf kvm: Refactoring of cpu_isa_config() Arnaldo Carvalho de Melo
2014-07-08 19:03 ` [PATCH 12/16] perf tools: Allow to use cpuinfo on s390 Arnaldo Carvalho de Melo
2014-07-08 19:03 ` [PATCH 13/16] perf tools: Convert open coded equivalents to asprintf() Arnaldo Carvalho de Melo
2014-07-08 19:03 ` [PATCH 14/16] perf tools: Suggest using -f to override perf.data file ownership message Arnaldo Carvalho de Melo
2014-07-08 19:03 ` [PATCH 15/16] perf trace: Add pagefault statistics Arnaldo Carvalho de Melo
2014-07-08 19:03 ` [PATCH 16/16] perf trace: Fix build on 32-bit systems Arnaldo Carvalho de Melo
2014-07-16 11:47 ` Ingo Molnar [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140716114748.GA28434@gmail.com \
    --to=mingo@kernel.org \
    --cc=acme@kernel.org \
    --cc=acme@redhat.com \
    --cc=adrian.hunter@intel.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=borntraeger@de.ibm.com \
    --cc=cjashfor@linux.vnet.ibm.com \
    --cc=cornelia.huck@de.ibm.com \
    --cc=dsahern@gmail.com \
    --cc=dzickus@redhat.com \
    --cc=efault@gmx.de \
    --cc=eranian@google.com \
    --cc=fweisbec@gmail.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=namhyung@kernel.org \
    --cc=paulus@samba.org \
    --cc=peterz@infradead.org \
    --cc=stfomichev@yandex-team.ru \
    --cc=yarygin@linux.vnet.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox