public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 0/8] perf/core fixes
@ 2015-07-01 21:23 Arnaldo Carvalho de Melo
  2015-07-01 21:23 ` [PATCH 1/8] perf tools: Add missing break for PERF_RECORD_ITRACE_START Arnaldo Carvalho de Melo
                   ` (9 more replies)
  0 siblings, 10 replies; 15+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-07-01 21:23 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, Aaro Koskinen,
	Adrian Hunter, David Ahern, Jiri Olsa, Kan Liang, Namhyung Kim,
	Peter Zijlstra, Taeung Song, Arnaldo Carvalho de Melo

Hi Ingo,

	Please consider pulling,

- Arnaldo

The following changes since commit 93472aff802fd7b61f2209335207e9bd793012f7:

  perf/x86: Fix 'active_events' imbalance (2015-06-30 13:08:46 +0200)

are available in the git repository at:

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

for you to fetch changes up to 5ef7bbb09f7b91ef06524c72e1ab1fc48e0d6682:

  perf tools: Allow to specify custom linker command (2015-07-01 17:53:50 -0300)

----------------------------------------------------------------
perf/core fixes:

Build fixes:

- Create config.detected into OUTPUT directory, fixing parallel
  builds sharing the same source directory (Aaro Kiskinen)

- Allow to specify custom linker command, fixing some MIPS64
  builds. (Aaro Kiskinen)

Infrastructure:

- Add missing break for PERF_RECORD_ITRACE_START, which caused those events
  samples to be parsed as well as PERF_RECORD_LOST_SAMPLES. ITRACE_START only
  appears when Intel PT or BTS are present, so  (Jiri Olsa)

- Call the perf_session destructor when bailing out in the inject, kmem, report,
  kvm and mem tools (Taeung Song)

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

----------------------------------------------------------------
Aaro Koskinen (2):
      perf tools: Create config.detected into OUTPUT directory
      perf tools: Allow to specify custom linker command

Jiri Olsa (1):
      perf tools: Add missing break for PERF_RECORD_ITRACE_START

Taeung Song (5):
      perf inject: Fill in the missing session freeing after an error occurs
      perf kmem: Fill in the missing session freeing after an error occurs
      perf report: Fill in the missing session freeing after an error occurs
      perf kvm: Fill in the missing session freeing after an error occurs
      perf mem: Fill in the missing session freeing after an error occurs

 tools/build/Makefile.build  |  2 +-
 tools/perf/Makefile.perf    |  4 ++--
 tools/perf/builtin-inject.c |  7 ++++---
 tools/perf/builtin-kmem.c   |  4 ++--
 tools/perf/builtin-kvm.c    | 14 ++++++++++----
 tools/perf/builtin-mem.c    | 16 ++++++----------
 tools/perf/builtin-report.c |  6 ++++--
 tools/perf/config/Makefile  |  6 +++---
 tools/perf/util/machine.c   |  3 +--
 9 files changed, 33 insertions(+), 29 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [GIT PULL 0/8] perf/core fixes
@ 2014-01-21 20:42 Arnaldo Carvalho de Melo
  2014-01-23 16:45 ` Ingo Molnar
  0 siblings, 1 reply; 15+ messages in thread
From: Arnaldo Carvalho de Melo @ 2014-01-21 20:42 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, Adrian Hunter, Alan Cox,
	Alan Cox, Andi Kleen, Baruch Siach, David Ahern,
	Frederic Weisbecker, Gaurav Jain, Jiri Olsa, linux-xtensa,
	Max Filippov, Mike Galbraith, Namhyung Kim, Namhyung Kim,
	Paul Mackerras, Peter Zijlstra, Peter Zijlstra,
	Stanislav Fomichev, Stephane Eranian, Arnaldo Carvalho de Melo

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

Hi Ingo,

	Please consider pulling,

- Arnaldo

The following changes since commit 45e6af06367e7b2eb8dc49671092462d8f8a5f47:

  Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2014-01-19 13:09:01 +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 578c03c86fadcc6fd7319ddf41dd4d1d88aab77a:

  perf symbols: Fix JIT symbol resolution on heap (2014-01-21 10:56:05 -0300)

----------------------------------------------------------------
perf/core fixes:

. Fix JIT symbol resolution on heap (Namhyung Kim)

. Fix wrong SVG height in 'timechart' (Stanislav Fomichev)

. Free temp cpu_map in perf_session__cpu_bitmap (Stanislav Fomichev)

. Fix NULL pointer reference bug with event unit in 'stat' (Stephane Eranian)

. Fix memory corruption of xyarray when cpumask is used (Stephane Eranian)

. Ensure sscanf does not overrun the "mem" field (Alan Cox)

. Add support for the xtensa architecture (Baruch Siach)

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

----------------------------------------------------------------
Alan Cox (1):
      perf tools: Ensure sscanf does not overrun the "mem" field

Baruch Siach (1):
      perf tools: Add support for the xtensa architecture

Namhyung Kim (1):
      perf symbols: Fix JIT symbol resolution on heap

Stanislav Fomichev (2):
      perf timechart: Fix wrong SVG height
      perf session: Free cpu_map in perf_session__cpu_bitmap

Stephane Eranian (3):
      perf stat: fix NULL pointer reference bug with event unit
      perf evsel: Remove duplicate member zeroing after free
      perf stat: Fix memory corruption of xyarray when cpumask is used

 tools/perf/builtin-timechart.c |  3 +++
 tools/perf/perf.h              |  7 +++++++
 tools/perf/util/evlist.c       |  7 +++++--
 tools/perf/util/evsel.c        |  1 -
 tools/perf/util/header.c       |  2 +-
 tools/perf/util/map.c          |  4 ++--
 tools/perf/util/parse-events.c |  2 +-
 tools/perf/util/pmu.c          | 24 ++++++++++++++++++++----
 tools/perf/util/pmu.h          |  2 +-
 tools/perf/util/session.c      | 10 +++++++---
 10 files changed, 47 insertions(+), 15 deletions(-)

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

end of thread, other threads:[~2015-07-02  9:22 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-01 21:23 [GIT PULL 0/8] perf/core fixes Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 1/8] perf tools: Add missing break for PERF_RECORD_ITRACE_START Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 2/8] perf inject: Fill in the missing session freeing after an error occurs Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 3/8] perf kmem: " Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 4/8] perf report: " Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 5/8] perf kvm: " Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 6/8] perf mem: " Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 7/8] perf tools: Create config.detected into OUTPUT directory Arnaldo Carvalho de Melo
2015-07-01 21:23 ` [PATCH 8/8] perf tools: Allow to specify custom linker command Arnaldo Carvalho de Melo
2015-07-02  8:50 ` [GIT PULL 0/8] perf/core fixes Ingo Molnar
2015-07-02  8:56 ` Ingo Molnar
2015-07-02  9:11   ` Jiri Olsa
2015-07-02  9:22     ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2014-01-21 20:42 Arnaldo Carvalho de Melo
2014-01-23 16:45 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox