All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V3 00/15] perf tools: some fixes and tweaks
@ 2013-06-28  8:43 Adrian Hunter
  2013-06-28  8:43 ` [PATCH V3 01/15] perf tools: remove unused parameter Adrian Hunter
                   ` (14 more replies)
  0 siblings, 15 replies; 23+ messages in thread
From: Adrian Hunter @ 2013-06-28  8:43 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: linux-kernel, David Ahern, Frederic Weisbecker, Jiri Olsa,
	Mike Galbraith, Namhyung Kim, Paul Mackerras, Peter Zijlstra,
	Stephane Eranian, Adrian Hunter

Hi

Here are some fixes and tweaks to perf tools (version 3).

Changes in V3:
	perf tools: add pid to struct thread
		Split into 2 patches
	perf tools: fix ppid in thread__fork()
		Dropped for now

Changes in V2:
	perf tools: fix missing tool parameter
		Fixed one extra occurrence
	perf tools: fix parse_events_terms() freeing local variable on error path
		Made "freeing" code into a new function
	perf tools: validate perf event header size
		Corrected byte-swapping
	perf tools: allow non-matching sample types
		Added comments
		Fixed id_pos calculation
		id_pos/is_pos updated whenever sample_type changes
		Removed perf_evlist__sample_type()
		Added __perf_evlist__combined_sample_type()
		Added perf_evlist__combined_sample_type()
		Added perf_evlist__make_sample_types_compatible()
	Added ack's to patches acked by Jiri Olsa


Adrian Hunter (15):
      perf tools: remove unused parameter
      perf tools: fix missing tool parameter
      perf tools: fix missing 'finished_round'
      perf tools: fix parse_events_terms() segfault on error path
      perf tools: fix new_term() missing free on error path
      perf tools: fix parse_events_terms() freeing local variable on error path
      perf tools: add const specifier to perf_pmu__find name parameter
      perf tools: tidy duplicated munmap code
      perf tools: validate perf event header size
      perf tools: add debug prints
      perf tools: fix symbol_conf.nr_events
      perf tools: allow non-matching sample types
      perf tools: struct thread has a tid not a pid
      perf tools: add pid to struct thread
      perf tools: change "machine" functions to set thread pid

 tools/perf/builtin-inject.c    |  40 +++++-----
 tools/perf/builtin-kmem.c      |   2 +-
 tools/perf/builtin-report.c    |   2 +-
 tools/perf/builtin-sched.c     |  12 +--
 tools/perf/builtin-trace.c     |   4 +-
 tools/perf/ui/browsers/hists.c |   6 +-
 tools/perf/util/event.c        |   2 +-
 tools/perf/util/event.h        |  14 ++++
 tools/perf/util/evlist.c       | 170 +++++++++++++++++++++++++++++++++++------
 tools/perf/util/evlist.h       |   8 +-
 tools/perf/util/evsel.c        | 116 +++++++++++++++++++++++++++-
 tools/perf/util/evsel.h        |  10 +++
 tools/perf/util/header.c       |   8 +-
 tools/perf/util/header.h       |   6 +-
 tools/perf/util/machine.c      |  57 ++++++++++----
 tools/perf/util/machine.h      |   8 +-
 tools/perf/util/parse-events.c |  11 ++-
 tools/perf/util/parse-events.h |   1 +
 tools/perf/util/pmu.c          |  16 ++--
 tools/perf/util/pmu.h          |   2 +-
 tools/perf/util/session.c      |  33 +++++---
 tools/perf/util/sort.c         |   6 +-
 tools/perf/util/thread.c       |  11 +--
 tools/perf/util/thread.h       |   5 +-
 tools/perf/util/tool.h         |   9 +--
 25 files changed, 441 insertions(+), 118 deletions(-)


Regards
Adrian

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

end of thread, other threads:[~2013-07-02  6:20 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-28  8:43 [PATCH V3 00/15] perf tools: some fixes and tweaks Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 01/15] perf tools: remove unused parameter Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 02/15] perf tools: fix missing tool parameter Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 03/15] perf tools: fix missing 'finished_round' Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 04/15] perf tools: fix parse_events_terms() segfault on error path Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 05/15] perf tools: fix new_term() missing free " Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 06/15] perf tools: fix parse_events_terms() freeing local variable " Adrian Hunter
2013-06-28  9:56   ` Jiri Olsa
2013-06-28 17:19   ` David Ahern
2013-07-01  8:01     ` Adrian Hunter
2013-07-01 18:46       ` David Ahern
2013-07-02  6:26         ` Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 07/15] perf tools: add const specifier to perf_pmu__find name parameter Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 08/15] perf tools: tidy duplicated munmap code Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 09/15] perf tools: validate perf event header size Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 10/15] perf tools: add debug prints Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 11/15] perf tools: fix symbol_conf.nr_events Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 12/15] perf tools: allow non-matching sample types Adrian Hunter
2013-06-28  8:43 ` [PATCH V3 13/15] perf tools: struct thread has a tid not a pid Adrian Hunter
2013-06-28 17:24   ` David Ahern
2013-06-28  8:43 ` [PATCH V3 14/15] perf tools: add pid to struct thread Adrian Hunter
2013-06-28 17:27   ` David Ahern
2013-06-28  8:43 ` [PATCH V3 15/15] perf tools: change "machine" functions to set thread pid Adrian Hunter

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.