linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 00/14] perf/core improvements, fixes and code move
@ 2012-10-29 15:08 Arnaldo Carvalho de Melo
  2012-10-29 15:09 ` [PATCH 01/14] perf tools: Move parse_events error printing to parse_events_options Arnaldo Carvalho de Melo
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Arnaldo Carvalho de Melo @ 2012-10-29 15:08 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, Andi Kleen, Andi Kleen,
	Corey Ashford, David Ahern, Feng Tang, Frederic Weisbecker,
	Jiri Olsa, Mike Galbraith, Namhyung Kim, Namhyung Kim,
	Paul Mackerras, Peter Zijlstra, Peter Zijlstra, Stephane Eranian,
	Arnaldo Carvalho de Melo

Hi Ingo,

	Please consider pulling,

- Arnaldo

The following changes since commit 9db55064940db1447976945d07402a923e818962:

  Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2012-10-26 16:52:45 +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 0da2e9c24804d787cbc919b3e0d28ee7c00240ff:

  perf python: Initialize 'page_size' variable (2012-10-29 12:36:46 -0200)

----------------------------------------------------------------
perf/core improvements, fixes and code move

. Initialize 'page_size' variable in the python binding, this was sent
  for perf/urgent by mistake, then when merging Ingo removed it, fixing
  the problem for perf/urgent, but when perf/urgent was merged with
  perf/core, where that initialization is needed, made the python
  binding mmap call to fail, fix it by initializing page_size again.

. Add a browser for 'perf script' and make it available from the report
  and annotate browsers. It does filtering to find the scripts that
  handle events found in the perf.data file used. From Feng Tang

. Move some functions from symbol.c to more appropriate files, creating
  dso.[ch] in the process, no code changes. From Jiri Olsa

. Fix mmap error output message for when perf_mmap fails and returns
  !-EPERM, where the default for mmap_pages, INT_MAX, was causing a
  !power of 2 error message, fix from Jiri Olsa.

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

----------------------------------------------------------------
Andi Kleen (1):
      perf tools: Move parse_events error printing to parse_events_options

Arnaldo Carvalho de Melo (1):
      perf python: Initialize 'page_size' variable

Feng Tang (6):
      perf tools: Add a global variable "const char *input_name"
      perf script: Add more filter to find_scripts()
      perf scripts browser: Add a browser for perf script
      perf annotate browser: Integrate script browser into annotation browser
      perf hists browser: Integrate script browser into main hists browser
      perf header: Add is_perf_magic() func

Jiri Olsa (6):
      perf tools: Move build_id__sprintf into build-id object
      perf tools: Move BUILD_ID_SIZE into build-id object
      perf tools: Move hex2u64 into util object
      perf tools: Move strxfrchar into string object
      perf tools: Move dso_* related functions into dso object
      perf record: Fix mmap error output condition

 tools/perf/Makefile                |    6 +
 tools/perf/builtin-annotate.c      |    5 +-
 tools/perf/builtin-buildid-cache.c |    1 +
 tools/perf/builtin-buildid-list.c  |    6 +-
 tools/perf/builtin-evlist.c        |    5 +-
 tools/perf/builtin-kmem.c          |    5 +-
 tools/perf/builtin-lock.c          |    2 -
 tools/perf/builtin-record.c        |    3 +-
 tools/perf/builtin-report.c        |   13 +-
 tools/perf/builtin-sched.c         |    5 +-
 tools/perf/builtin-script.c        |   83 ++++-
 tools/perf/builtin-timechart.c     |    5 +-
 tools/perf/perf.c                  |    1 +
 tools/perf/perf.h                  |    1 +
 tools/perf/ui/browsers/annotate.c  |    6 +
 tools/perf/ui/browsers/hists.c     |   38 +++
 tools/perf/ui/browsers/scripts.c   |  189 +++++++++++
 tools/perf/util/annotate.c         |    1 +
 tools/perf/util/build-id.c         |   15 +
 tools/perf/util/build-id.h         |    7 +-
 tools/perf/util/dso.c              |  594 ++++++++++++++++++++++++++++++++
 tools/perf/util/dso.h              |  148 ++++++++
 tools/perf/util/event.h            |    3 +-
 tools/perf/util/header.c           |   11 +
 tools/perf/util/header.h           |    1 +
 tools/perf/util/hist.h             |    7 +
 tools/perf/util/map.c              |    1 +
 tools/perf/util/parse-events.c     |   10 +-
 tools/perf/util/python.c           |    2 +
 tools/perf/util/string.c           |   18 +
 tools/perf/util/symbol.c           |  657 +-----------------------------------
 tools/perf/util/symbol.h           |  141 +-------
 tools/perf/util/util.c             |   33 ++
 tools/perf/util/util.h             |    2 +
 34 files changed, 1196 insertions(+), 829 deletions(-)
 create mode 100644 tools/perf/ui/browsers/scripts.c
 create mode 100644 tools/perf/util/dso.c
 create mode 100644 tools/perf/util/dso.h

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2012-10-30  7:37 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-29 15:08 [GIT PULL 00/14] perf/core improvements, fixes and code move Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 01/14] perf tools: Move parse_events error printing to parse_events_options Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 02/14] perf tools: Move build_id__sprintf into build-id object Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 03/14] perf tools: Move BUILD_ID_SIZE " Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 04/14] perf tools: Move hex2u64 into util object Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 05/14] perf tools: Move strxfrchar into string object Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 06/14] perf tools: Move dso_* related functions into dso object Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 07/14] perf tools: Add a global variable "const char *input_name" Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 08/14] perf script: Add more filter to find_scripts() Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 09/14] perf scripts browser: Add a browser for perf script Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 10/14] perf annotate browser: Integrate script browser into annotation browser Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 11/14] perf hists browser: Integrate script browser into main hists browser Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 12/14] perf header: Add is_perf_magic() func Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 13/14] perf record: Fix mmap error output condition Arnaldo Carvalho de Melo
2012-10-29 15:09 ` [PATCH 14/14] perf python: Initialize 'page_size' variable Arnaldo Carvalho de Melo
2012-10-30  7:37 ` [GIT PULL 00/14] perf/core improvements, fixes and code move Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).