All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: linux-kernel@vger.kernel.org, Arun Sharma <asharma@fb.com>,
	Corey Ashford <cjashfor@linux.vnet.ibm.com>,
	Cyrill Gorcunov <gorcunov@openvz.org>,
	David Ahern <dsahern@gmail.com>,
	"Frank C. Eigler" <fche@redhat.com>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	Jiri Olsa <jolsa@redhat.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Mike Galbraith <efault@gmx.de>, Namhyung Kim <namhyung@gmail.com>,
	Namhyung Kim <namhyung.kim@lge.com>,
	Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Robert Richter <robert.richter@amd.com>,
	Stephane Eranian <eranian@google.com>,
	Tom Zanussi <tzanussi@gmail.com>,
	Ulrich Drepper <drepper@gmail.com>,
	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/16] perf/core fixes and improvements
Date: Fri, 11 May 2012 08:14:52 +0200	[thread overview]
Message-ID: <20120511061452.GA7955@gmail.com> (raw)
In-Reply-To: <1336670265-20401-1-git-send-email-acme@infradead.org>


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

> Hi Ingo,
> 
> 	This is on top of a 15 patches long series still outstanding on my
> perf/core branch, please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit dc41b9b8f02dbe2228ae787d525dac43beebb7fa:
> 
>   perf ui: Change fallback policy of setup_browser() (2012-05-02 16:17:37 -0300)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux tags/perf-core-for-mingo
> 
> for you to fetch changes up to 5a5626b1b4bf8467891c9297ffda979db97ed5ec:
> 
>   perf hists browser: Use '/' for search/filter instead of 's' (2012-05-10 13:07:59 -0300)
> 
> ----------------------------------------------------------------
> Fixes and improvements for perf/core:
> 
> . perf_target: abstraction for --uid, --pid, --tid, --cpu, --all-cpus handling,
>   eliminating code duplicated in the tools, having constraints that apply to
>   all of them, from Namhyung Kim
> 
> . Fixes for handling fallback to cpu-clock on PPC, from David Ahern
> 
> . Fix for processing events with unknown size, from Jiri Olsa
> 
> . Compilation fix on 32-bit, from Jiri Olsa
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (3):
>       perf top: Set target.system_wide
>       perf top: Default to system wide using perf_target methods
>       perf hists browser: Use '/' for search/filter instead of 's'
> 
> David Ahern (5):
>       perf record: Fix fallback to cpu-clock on ppc
>       perf stat: handle ENXIO error for perf_event_open
>       perf top: Update event name when falling back to cpu-clock
>       perf record: Reset event name when falling back to cpu-clock
>       perf annotate: shorten helpline so it fits in visible space
> 
> Jiri Olsa (2):
>       perf session: Fail on processing event with unknown size
>       perf report: Fix format string for x86-32 compilation
> 
> Namhyung Kim (6):
>       perf evlist: Fix creation of cpu map
>       perf target: Introduce perf_target_errno
>       perf target: Introduce perf_target__parse_uid()
>       perf tools: Introduce perf_target__strerror()
>       perf target: Consolidate target task/cpu checking
>       perf stat: Use perf_evlist__create_maps
> 
>  tools/perf/builtin-record.c       |   36 ++++++++---
>  tools/perf/builtin-report.c       |    2 +-
>  tools/perf/builtin-stat.c         |   41 +++++++------
>  tools/perf/builtin-top.c          |   29 +++++++--
>  tools/perf/ui/browsers/annotate.c |    6 +-
>  tools/perf/ui/browsers/hists.c    |    4 +-
>  tools/perf/util/debug.c           |    1 +
>  tools/perf/util/evlist.c          |    9 ++-
>  tools/perf/util/evsel.c           |    8 +--
>  tools/perf/util/session.c         |   30 +++-------
>  tools/perf/util/target.c          |  119 +++++++++++++++++++++++++++++++++----
>  tools/perf/util/target.h          |   48 ++++++++++++++-
>  tools/perf/util/usage.c           |   31 ----------
>  tools/perf/util/util.h            |    3 -
>  14 files changed, 250 insertions(+), 117 deletions(-)

Pulled, thanks Arnaldo!

	Ingo

  parent reply	other threads:[~2012-05-11  6:15 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-10 17:17 [GIT PULL 00/16] perf/core fixes and improvements Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 01/16] perf session: Fail on processing event with unknown size Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 02/16] perf top: Set target.system_wide Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 03/16] perf evlist: Fix creation of cpu map Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 04/16] perf target: Introduce perf_target_errno Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 05/16] perf target: Introduce perf_target__parse_uid() Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 06/16] perf tools: Introduce perf_target__strerror() Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 07/16] perf target: Consolidate target task/cpu checking Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 08/16] perf stat: Use perf_evlist__create_maps Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 09/16] perf top: Default to system wide using perf_target methods Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 10/16] perf report: Fix format string for x86-32 compilation Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 11/16] perf record: Fix fallback to cpu-clock on ppc Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 12/16] perf stat: handle ENXIO error for perf_event_open Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 13/16] perf top: Update event name when falling back to cpu-clock Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 14/16] perf record: Reset " Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 15/16] perf annotate: shorten helpline so it fits in visible space Arnaldo Carvalho de Melo
2012-05-10 17:17 ` [PATCH 16/16] perf hists browser: Use '/' for search/filter instead of 's' Arnaldo Carvalho de Melo
2012-05-11  6:14 ` Ingo Molnar [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-01-08 19:58 [GIT PULL 00/16] perf/core fixes and improvements Arnaldo Carvalho de Melo
2019-01-09  7:05 ` Ingo Molnar
2019-01-09 13:04   ` Arnaldo Carvalho de Melo

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=20120511061452.GA7955@gmail.com \
    --to=mingo@kernel.org \
    --cc=acme@ghostprotocols.net \
    --cc=acme@infradead.org \
    --cc=acme@redhat.com \
    --cc=asharma@fb.com \
    --cc=cjashfor@linux.vnet.ibm.com \
    --cc=drepper@gmail.com \
    --cc=dsahern@gmail.com \
    --cc=efault@gmx.de \
    --cc=eranian@google.com \
    --cc=fche@redhat.com \
    --cc=fweisbec@gmail.com \
    --cc=gorcunov@openvz.org \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=namhyung.kim@lge.com \
    --cc=namhyung@gmail.com \
    --cc=paulus@samba.org \
    --cc=peterz@infradead.org \
    --cc=robert.richter@amd.com \
    --cc=tzanussi@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.