All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 00/15] perf/core fixes and improvements
@ 2012-05-02 19:24 Arnaldo Carvalho de Melo
  2012-05-02 19:24 ` [PATCH 01/15] perf tools: Cleanup realloc use Arnaldo Carvalho de Melo
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Arnaldo Carvalho de Melo @ 2012-05-02 19:24 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, David Ahern,
	Frederic Weisbecker, Mike Galbraith, Namhyung Kim, Namhyung Kim,
	Paul Mackerras, Pekka Enberg, Peter Zijlstra, Robert Richter,
	Stephane Eranian, Ulrich Drepper, arnaldo.melo,
	Arnaldo Carvalho de Melo

Hi Ingo,

	Please consider pulling,

- Arnaldo

The following changes since commit a385ec4f11bdcf81af094c03e2444ee9b7fad2e5:

  Merge tag 'v3.4-rc2' into perf/core (2012-04-13 09:57:10 +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 dc41b9b8f02dbe2228ae787d525dac43beebb7fa:

  perf ui: Change fallback policy of setup_browser() (2012-05-02 16:17:37 -0300)

----------------------------------------------------------------
New features and fixes for perf/core:

. Improvements in how the gtk UI is handled when setting up the browser,
  from Namhyung Kim.

. Introduce a perf_target class to coalesce target (user, thread, cpu, etc)
  handling and validation, from Namhyung Kim.

. Clean up realloc use, from Ulrich Drepper.

. Add missing include in parse-events.h, from Robert Richter.

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

----------------------------------------------------------------
Arnaldo Carvalho de Melo (1):
      perf test: Make the rdpmc test honour 'verbose' mode

Namhyung Kim (12):
      perf tools: Introduce struct perf_target
      perf stat: Convert to struct perf_target
      perf top: Convert to struct perf_target
      perf tools: Introduce perf_target__validate() helper
      perf evlist: Make create_maps() take struct perf_target
      perf tools: Check more combinations of PID/TID, UID and CPU switches
      perf target: Split out perf_target handling code
      perf ui: Make setup_browser() generic
      perf ui gtk: Drop arg[cv] arguments from perf_gtk_setup_browser()
      perf ui gtk: Rename functions for consistency
      perf ui: Add gtk2 support into setup_browser()
      perf ui: Change fallback policy of setup_browser()

Robert Richter (1):
      perf tools: Fix include header files in util/parse-events.h

Ulrich Drepper (1):
      perf tools: Cleanup realloc use

 tools/perf/Makefile            |    8 ++
 tools/perf/builtin-record.c    |   38 +++++----
 tools/perf/builtin-report.c    |   10 +--
 tools/perf/builtin-stat.c      |   46 +++++------
 tools/perf/builtin-test.c      |   12 +--
 tools/perf/builtin-top.c       |   34 +++-----
 tools/perf/perf.h              |    8 +-
 tools/perf/ui/gtk/browser.c    |   31 +++-----
 tools/perf/ui/gtk/setup.c      |   12 +++
 tools/perf/ui/setup.c          |  168 +++++++---------------------------------
 tools/perf/ui/tui/setup.c      |  140 +++++++++++++++++++++++++++++++++
 tools/perf/util/cache.h        |   24 ++++--
 tools/perf/util/evlist.c       |   15 ++--
 tools/perf/util/evlist.h       |    4 +-
 tools/perf/util/evsel.c        |   11 +--
 tools/perf/util/header.c       |   17 ++--
 tools/perf/util/parse-events.h |    2 +
 tools/perf/util/target.c       |   45 +++++++++++
 tools/perf/util/target.h       |   18 +++++
 tools/perf/util/top.c          |   19 ++---
 tools/perf/util/top.h          |    6 +-
 tools/perf/util/usage.c        |    9 +--
 tools/perf/util/util.h         |    2 +-
 23 files changed, 380 insertions(+), 299 deletions(-)
 create mode 100644 tools/perf/ui/gtk/setup.c
 create mode 100644 tools/perf/ui/tui/setup.c
 create mode 100644 tools/perf/util/target.c
 create mode 100644 tools/perf/util/target.h

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

end of thread, other threads:[~2012-05-02 19:28 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-02 19:24 [GIT PULL 00/15] perf/core fixes and improvements Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 01/15] perf tools: Cleanup realloc use Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 02/15] perf test: Make the rdpmc test honour 'verbose' mode Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 03/15] perf tools: Fix include header files in util/parse-events.h Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 04/15] perf tools: Introduce struct perf_target Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 05/15] perf stat: Convert to " Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 06/15] perf top: " Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 07/15] perf tools: Introduce perf_target__validate() helper Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 08/15] perf evlist: Make create_maps() take struct perf_target Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 09/15] perf tools: Check more combinations of PID/TID, UID and CPU switches Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 10/15] perf target: Split out perf_target handling code Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 11/15] perf ui: Make setup_browser() generic Arnaldo Carvalho de Melo
2012-05-02 19:24 ` [PATCH 12/15] perf ui gtk: Drop arg[cv] arguments from perf_gtk_setup_browser() Arnaldo Carvalho de Melo
2012-05-02 19:25 ` [PATCH 13/15] perf ui gtk: Rename functions for consistency Arnaldo Carvalho de Melo
2012-05-02 19:25 ` [PATCH 14/15] perf ui: Add gtk2 support into setup_browser() Arnaldo Carvalho de Melo
2012-05-02 19:25 ` [PATCH 15/15] perf ui: Change fallback policy of setup_browser() Arnaldo Carvalho de Melo

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.