linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 00/13] perf/core improvements and fixes
@ 2014-01-15 20:32 Arnaldo Carvalho de Melo
  2014-01-15 20:32 ` [PATCH 01/13] perf record: Rename --no-delay to --no-buffering Arnaldo Carvalho de Melo
                   ` (13 more replies)
  0 siblings, 14 replies; 17+ messages in thread
From: Arnaldo Carvalho de Melo @ 2014-01-15 20:32 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, Adrian Hunter, Andi Kleen,
	Arun Sharma, David Ahern, Frederic Weisbecker, Jiri Olsa,
	Mark Rutland, Mike Galbraith, Namhyung Kim, Paul Mackerras,
	Peter Zijlstra, Rodrigo Campos, Stephane Eranian, Steven Rostedt,
	Will Deacon, Arnaldo Carvalho de Melo

From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>

Hi Ingo,

	Please consider pulling,

- Arnaldo

The following changes since commit 197749981e539c1eb5863f417de6dd4e2c02b76c:

  Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2014-01-14 17:25:12 +0100)

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 0e9e79a13ab9d56b86db6538305babc23b1445cc:

  tools lib traceevent: fix pointer-integer size mismatch (2014-01-15 17:04:38 -0300)

----------------------------------------------------------------
Changes in user visible interfaces:

. Rename 'record's --no-delay option to --no-buffering, better reflecting its
  purpose and freeing up '--delay' to take the place of '--initial-delay', so that
  'record' and 'stat' are consistent.

Refactorings:

. Get rid of die() and friends (good riddance!) in libtraceevent (Namhyung Kim)

Developer stuff:

. Fix cross build problems related to pkgconfig and CROSS_COMPILE not being
  propagated to the feature tests, leading to features being tested in the
  host and then being enabled on the target. (Mark Rutland)

. Fix pointer-integer size mismatch in some libtraceevent plugins (Mark Rutland)

. Fix build error due to zfree() cast (Namhyung Kim)

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

----------------------------------------------------------------
Arnaldo Carvalho de Melo (2):
      perf record: Rename --no-delay to --no-buffering
      perf record: Rename --initial-delay to --delay

Mark Rutland (2):
      perf: tools: Fix cross building
      tools lib traceevent: fix pointer-integer size mismatch

Namhyung Kim (9):
      perf tools: Fix build error due to zfree() cast
      tools lib traceevent: Add state member to struct trace_seq
      tools lib traceevent: Check return value of realloc()
      tools lib traceevent: Get rid of malloc_or_die() in trace_seq_init()
      tools lib traceevent: Get rid of die() finally!!
      tools lib traceevent: Make plugin unload function receive pevent
      perf tools: Remove symbol_conf.use_callchain check
      perf tools: Factor out sample__resolve_callchain()
      perf hists: Convert hist entry functions to use struct he_stat

 tools/lib/traceevent/Makefile             |  2 +-
 tools/lib/traceevent/event-parse.h        | 14 +++++--
 tools/lib/traceevent/event-plugin.c       |  4 +-
 tools/lib/traceevent/event-utils.h        |  4 --
 tools/lib/traceevent/parse-utils.c        | 44 --------------------
 tools/lib/traceevent/plugin_cfg80211.c    |  2 +-
 tools/lib/traceevent/plugin_function.c    |  2 +-
 tools/lib/traceevent/plugin_scsi.c        |  2 +-
 tools/lib/traceevent/trace-seq.c          | 67 ++++++++++++++++++++++++-------
 tools/perf/Documentation/perf-record.txt  |  6 +--
 tools/perf/Makefile.perf                  |  1 +
 tools/perf/builtin-record.c               |  4 +-
 tools/perf/builtin-report.c               | 24 ++---------
 tools/perf/builtin-top.c                  | 22 ++++------
 tools/perf/builtin-trace.c                |  2 +-
 tools/perf/config/Makefile                |  6 +--
 tools/perf/config/feature-checks/Makefile |  9 +++--
 tools/perf/perf.h                         |  2 +-
 tools/perf/tests/open-syscall-tp-fields.c |  8 ++--
 tools/perf/tests/perf-record.c            |  6 +--
 tools/perf/util/callchain.c               | 23 +++++++++++
 tools/perf/util/callchain.h               |  6 +++
 tools/perf/util/evsel.c                   |  2 +-
 tools/perf/util/hist.c                    | 22 +++++-----
 tools/perf/util/machine.c                 |  2 -
 tools/perf/util/srcline.c                 |  4 +-
 tools/perf/util/strlist.c                 |  2 +-
 tools/perf/util/trace-event.c             |  2 +-
 28 files changed, 147 insertions(+), 147 deletions(-)

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

end of thread, other threads:[~2014-01-16  8:36 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-15 20:32 [GIT PULL 00/13] perf/core improvements and fixes Arnaldo Carvalho de Melo
2014-01-15 20:32 ` [PATCH 01/13] perf record: Rename --no-delay to --no-buffering Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 02/13] perf record: Rename --initial-delay to --delay Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 03/13] perf tools: Fix build error due to zfree() cast Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 04/13] tools lib traceevent: Add state member to struct trace_seq Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 05/13] tools lib traceevent: Check return value of realloc() Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 06/13] tools lib traceevent: Get rid of malloc_or_die() in trace_seq_init() Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 07/13] tools lib traceevent: Get rid of die() finally!! Arnaldo Carvalho de Melo
2014-01-15 21:17   ` Steven Rostedt
2014-01-16  8:33     ` Ingo Molnar
2014-01-15 20:33 ` [PATCH 08/13] tools lib traceevent: Make plugin unload function receive pevent Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 09/13] perf: tools: Fix cross building Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 10/13] perf tools: Remove symbol_conf.use_callchain check Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 11/13] perf tools: Factor out sample__resolve_callchain() Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 12/13] perf hists: Convert hist entry functions to use struct he_stat Arnaldo Carvalho de Melo
2014-01-15 20:33 ` [PATCH 13/13] tools lib traceevent: fix pointer-integer size mismatch Arnaldo Carvalho de Melo
2014-01-16  8:36 ` [GIT PULL 00/13] perf/core improvements and fixes 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).