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@infradead.org>
Cc: linux-kernel@vger.kernel.org, Arun Sharma <asharma@fb.com>,
	Benjamin Redelings <benjamin.redelings@nescent.org>,
	Corey Ashford <cjashfor@linux.vnet.ibm.com>,
	Cyrill Gorcunov <gorcunov@openvz.org>,
	David Ahern <dsahern@gmail.com>,
	"Frank Ch. Eigler" <fche@redhat.com>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	Hitoshi Mitake <h.mitake@gmail.com>, Jiri Olsa <jolsa@redhat.com>,
	Jovi Zhang <bookjovi@gmail.com>,
	Konstantin Stepanyuk <konstantin.stepanyuk@gmail.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Namhyung Kim <namhyung@kernel.org>,
	Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Robert Richter <robert.richter@amd.com>,
	Stephane Eranian <eranian@google.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Tom Zanussi <tzanussi@gmail.com>,
	Ulrich Drepper <drepper@gmail.com>,
	arnaldo.melo@gmail.com,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/13] perf/core fixes and improvements
Date: Fri, 6 Jul 2012 10:24:13 +0200	[thread overview]
Message-ID: <20120706082413.GB17633@gmail.com> (raw)
In-Reply-To: <1341260331-10204-1-git-send-email-acme@infradead.org>


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

> Hi Ingo,
> 
> 	Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit add79461a2a7d964a00b4a2fdaf313c4cf9cf4ec:
> 
>   Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2012-06-29 15:11:26 +0200)
> 
> 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 17d7a1123f0f6d532830152564cc812cc73db2f3:
> 
>   perf bench: Fix confused variable namings and descriptions in mem subsystem (2012-07-02 14:35:45 -0300)
> 
> ----------------------------------------------------------------
> perf/core improvements and fixes
> 
> . Fix libtraceevent 'clean' make target, from Namhyung Kim
> 
> . Teach ctags about libtraceevent error codes, from Namhyung Kim
> 
> . Fix libtraceevent dependency files usage, from Namhyung Kim
> 
> . Support hex number pretty printing in libtraceevent, fixing
>   kvm output, from Namhyung Kim
> 
> . Kill some die() usage in libtraceevent, from Namhyung Kim
> 
> . Improve support for hw breakpoints parsing/pretty printing/testing,
>   from Jiri Olsa
> 
> . Clarify perf bench option naming, from Hitoshi Mitake
> 
> . Look for ".note" ELF notes too, used in the kernel vdso, from Jiri Olsa
> 
> . Fix internal PMU list usage, removing leak, from Robert Richter
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Hitoshi Mitake (1):
>       perf bench: Fix confused variable namings and descriptions in mem subsystem
> 
> Jiri Olsa (4):
>       perf tools: Fix hw breakpoint's type modifier parsing
>       perf evsel: Handle hw breakpoints event names in perf_evsel__name()
>       perf symbols: Add '.note' check into search for NOTE section
>       perf tools: Adding round_up/round_down macros
> 
> Konstantin Stepanyuk (1):
>       tools lib traceevent: Fix clean target in Makefile
> 
> Namhyung Kim (6):
>       tools lib traceevent: Teach [ce]tags about libtraceeevent error codes
>       tools lib traceevent: Make dependency files regeneratable
>       tools lib traceevent: Check string is really printable
>       tools lib traceevent: Use local variable 'field'
>       tools lib traceevent: Add support for __print_hex()
>       tools lib traceevent: Replace malloc_or_die to plain malloc in alloc_event()
> 
> Robert Richter (1):
>       perf tools: Fix generation of pmu list
> 
>  tools/lib/traceevent/Makefile                      |   14 ++-
>  tools/lib/traceevent/event-parse.c                 |  112 ++++++++++++++++++--
>  tools/lib/traceevent/event-parse.h                 |    7 ++
>  tools/perf/Documentation/perf-bench.txt            |    4 +-
>  tools/perf/bench/mem-memcpy.c                      |   80 +++++++-------
>  tools/perf/bench/mem-memset.c                      |   80 +++++++-------
>  tools/perf/util/evsel.c                            |   30 ++++++
>  tools/perf/util/include/linux/kernel.h             |   10 ++
>  tools/perf/util/parse-events-test.c                |   47 ++++++++
>  tools/perf/util/parse-events.c                     |   20 ++--
>  tools/perf/util/parse-events.l                     |    2 +-
>  tools/perf/util/pmu.c                              |    3 +-
>  .../perf/util/scripting-engines/trace-event-perl.c |    4 +
>  .../util/scripting-engines/trace-event-python.c    |    4 +
>  tools/perf/util/symbol.c                           |   29 +++--
>  15 files changed, 335 insertions(+), 111 deletions(-)

Pulled, thanks Arnaldo!

	Ingo

  parent reply	other threads:[~2012-07-06  8:24 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-02 20:18 [GIT PULL 00/13] perf/core fixes and improvements Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 01/13] tools lib traceevent: Fix clean target in Makefile Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 02/13] tools lib traceevent: Teach [ce]tags about libtraceeevent error codes Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 03/13] tools lib traceevent: Make dependency files regeneratable Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 04/13] tools lib traceevent: Check string is really printable Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 05/13] tools lib traceevent: Use local variable 'field' Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 06/13] tools lib traceevent: Add support for __print_hex() Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 07/13] tools lib traceevent: Replace malloc_or_die to plain malloc in alloc_event() Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 08/13] perf tools: Fix hw breakpoint's type modifier parsing Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 09/13] perf evsel: Handle hw breakpoints event names in perf_evsel__name() Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 10/13] perf tools: Fix generation of pmu list Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 11/13] perf symbols: Add '.note' check into search for NOTE section Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 12/13] perf tools: Adding round_up/round_down macros Arnaldo Carvalho de Melo
2012-07-02 20:18 ` [PATCH 13/13] perf bench: Fix confused variable namings and descriptions in mem subsystem Arnaldo Carvalho de Melo
2012-07-06  8:24 ` Ingo Molnar [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-04-11 21:05 [GIT PULL 00/13] perf/core fixes and improvements Arnaldo Carvalho de Melo
2012-04-13  7:58 ` Ingo Molnar
2012-03-16 20:01 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=20120706082413.GB17633@gmail.com \
    --to=mingo@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@infradead.org \
    --cc=acme@redhat.com \
    --cc=arnaldo.melo@gmail.com \
    --cc=asharma@fb.com \
    --cc=benjamin.redelings@nescent.org \
    --cc=bookjovi@gmail.com \
    --cc=cjashfor@linux.vnet.ibm.com \
    --cc=drepper@gmail.com \
    --cc=dsahern@gmail.com \
    --cc=eranian@google.com \
    --cc=fche@redhat.com \
    --cc=fweisbec@gmail.com \
    --cc=gorcunov@openvz.org \
    --cc=h.mitake@gmail.com \
    --cc=jolsa@redhat.com \
    --cc=konstantin.stepanyuk@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=namhyung@kernel.org \
    --cc=paulus@samba.org \
    --cc=robert.richter@amd.com \
    --cc=rostedt@goodmis.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox