mbox

[GIT,PULL,0/7] perf/core improvements and fixes

Message ID 1340824854-3005-1-git-send-email-acme@infradead.org
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux tags/perf-core-for-mingo

Message

Arnaldo Carvalho de Melo June 27, 2012, 7:20 p.m. UTC
Hi Ingo,

	Please consider pulling.

	Tested on RHEL6.2, Fedora 17 x86 and x86_64,

- Arnaldo

The following changes since commit 357398e96d8c883b010379a7669df43ed0e2e32b:

  perf/x86: Fix section mismatch in uncore_pci_init() (2012-06-25 10:32:21 +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 d9873ab79376d5c0112ed09e14783067dc65e808:

  perf tools: Trivial build fix (2012-06-27 13:32:06 -0300)

----------------------------------------------------------------
perf/core improvements and fixes:

. Improve 'perf bench' docs, by Namhyung Kim

. Fix build when O= is not used, from David Ahern

. Fix cross compilation build, from Namhyung Kim

. Fix pipe mode when callchains are used, from David Ahern

. Follow .gnu_debuglink section to find separate symbols, from Pierre-Loup A. Griffais

. Fix 'perf test' raw events entries, from Jiri Olsa

. Use the events description in the perf.data file, not the sysfs ones.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

----------------------------------------------------------------
Arnaldo Carvalho de Melo (1):
      perf tools: Stop using a global trace events description list

David Ahern (2):
      perf report: Delay sample_type checks in pipe mode
      perf tools: Trivial build fix

Jiri Olsa (1):
      perf test: Fix parse events test to follow proper raw event name

Namhyung Kim (2):
      perf evsel: Fix a build failure on cross compilation
      perf bench: Documentation update

Pierre-Loup A. Griffais (1):
      perf symbols: Follow .gnu_debuglink section to find separate symbols

 tools/perf/Documentation/perf-bench.txt            |   78 +++++++++++++++-
 tools/perf/Makefile                                |    2 +-
 tools/perf/bench/mem-memcpy.c                      |    4 +-
 tools/perf/bench/mem-memset.c                      |    8 +-
 tools/perf/builtin-bench.c                         |    4 +-
 tools/perf/builtin-kmem.c                          |   37 +++++---
 tools/perf/builtin-lock.c                          |    4 +-
 tools/perf/builtin-report.c                        |    6 +-
 tools/perf/builtin-sched.c                         |   36 +++++---
 tools/perf/builtin-script.c                        |   66 ++++++++-----
 tools/perf/util/evlist.c                           |    4 +-
 tools/perf/util/evlist.h                           |    3 +
 tools/perf/util/evsel.c                            |    1 -
 tools/perf/util/header.c                           |   31 ++++---
 tools/perf/util/parse-events-test.c                |    7 +-
 .../perf/util/scripting-engines/trace-event-perl.c |   28 +++---
 .../util/scripting-engines/trace-event-python.c    |   21 +++--
 tools/perf/util/session.c                          |   56 +++++++++++
 tools/perf/util/session.h                          |   10 ++
 tools/perf/util/symbol.c                           |   65 ++++++++++++-
 tools/perf/util/symbol.h                           |    1 +
 tools/perf/util/trace-event-parse.c                |   58 ++++++------
 tools/perf/util/trace-event-read.c                 |   97 ++++++++++----------
 tools/perf/util/trace-event-scripting.c            |    7 +-
 tools/perf/util/trace-event.h                      |   38 ++++----
 25 files changed, 471 insertions(+), 201 deletions(-)

Comments

Ingo Molnar June 29, 2012, 1:12 p.m. UTC | #1
* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:

> Hi Ingo,
> 
> 	Please consider pulling.
> 
> 	Tested on RHEL6.2, Fedora 17 x86 and x86_64,
> 
> - Arnaldo
> 
> The following changes since commit 357398e96d8c883b010379a7669df43ed0e2e32b:
> 
>   perf/x86: Fix section mismatch in uncore_pci_init() (2012-06-25 10:32:21 +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 d9873ab79376d5c0112ed09e14783067dc65e808:
> 
>   perf tools: Trivial build fix (2012-06-27 13:32:06 -0300)
> 
> ----------------------------------------------------------------
> perf/core improvements and fixes:
> 
> . Improve 'perf bench' docs, by Namhyung Kim
> 
> . Fix build when O= is not used, from David Ahern
> 
> . Fix cross compilation build, from Namhyung Kim
> 
> . Fix pipe mode when callchains are used, from David Ahern
> 
> . Follow .gnu_debuglink section to find separate symbols, from Pierre-Loup A. Griffais
> 
> . Fix 'perf test' raw events entries, from Jiri Olsa
> 
> . Use the events description in the perf.data file, not the sysfs ones.
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (1):
>       perf tools: Stop using a global trace events description list
> 
> David Ahern (2):
>       perf report: Delay sample_type checks in pipe mode
>       perf tools: Trivial build fix
> 
> Jiri Olsa (1):
>       perf test: Fix parse events test to follow proper raw event name
> 
> Namhyung Kim (2):
>       perf evsel: Fix a build failure on cross compilation
>       perf bench: Documentation update
> 
> Pierre-Loup A. Griffais (1):
>       perf symbols: Follow .gnu_debuglink section to find separate symbols
> 
>  tools/perf/Documentation/perf-bench.txt            |   78 +++++++++++++++-
>  tools/perf/Makefile                                |    2 +-
>  tools/perf/bench/mem-memcpy.c                      |    4 +-
>  tools/perf/bench/mem-memset.c                      |    8 +-
>  tools/perf/builtin-bench.c                         |    4 +-
>  tools/perf/builtin-kmem.c                          |   37 +++++---
>  tools/perf/builtin-lock.c                          |    4 +-
>  tools/perf/builtin-report.c                        |    6 +-
>  tools/perf/builtin-sched.c                         |   36 +++++---
>  tools/perf/builtin-script.c                        |   66 ++++++++-----
>  tools/perf/util/evlist.c                           |    4 +-
>  tools/perf/util/evlist.h                           |    3 +
>  tools/perf/util/evsel.c                            |    1 -
>  tools/perf/util/header.c                           |   31 ++++---
>  tools/perf/util/parse-events-test.c                |    7 +-
>  .../perf/util/scripting-engines/trace-event-perl.c |   28 +++---
>  .../util/scripting-engines/trace-event-python.c    |   21 +++--
>  tools/perf/util/session.c                          |   56 +++++++++++
>  tools/perf/util/session.h                          |   10 ++
>  tools/perf/util/symbol.c                           |   65 ++++++++++++-
>  tools/perf/util/symbol.h                           |    1 +
>  tools/perf/util/trace-event-parse.c                |   58 ++++++------
>  tools/perf/util/trace-event-read.c                 |   97 ++++++++++----------
>  tools/perf/util/trace-event-scripting.c            |    7 +-
>  tools/perf/util/trace-event.h                      |   38 ++++----
>  25 files changed, 471 insertions(+), 201 deletions(-)

Pulled, thanks Arnaldo!

	Ingo