From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: linux-kernel@vger.kernel.org,
Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
Adrian Hunter <adrian.hunter@intel.com>,
Andi Kleen <ak@linux.intel.com>, Borislav Petkov <bp@alien8.de>,
David Ahern <dsahern@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jiri Olsa <jolsa@redhat.com>, Mike Galbraith <efault@gmx.de>,
Namhyung Kim <namhyung.kim@lge.com>,
Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Ramkumar Ramachandra <artagnon@gmail.com>,
Stephane Eranian <eranian@google.com>,
Steven Rostedt <rostedt@goodmis.org>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/20] perf/core improvements and fixes
Date: Mon, 16 Dec 2013 14:54:01 +0100 [thread overview]
Message-ID: <20131216135401.GA3393@gmail.com> (raw)
In-Reply-To: <1386947526-7118-1-git-send-email-acme@infradead.org>
* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:
> From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
>
> Hi Ingo,
>
> Please consider pulling,
>
> Regards,
>
> - Arnaldo
>
> The following changes since commit c7f2e3cd6c1f4932ccc4135d050eae3f7c7aef63:
>
> perf: Optimize ring-buffer write by depending on control dependencies (2013-12-11 15:53:22 +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 41e12e580a7b0c151199f927193548b84d3e874c:
>
> tools lib traceevent: Refactor pevent_filter_match() to get rid of die() (2013-12-13 10:30:22 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> Fixes:
>
> . Fix inverted error verification bug in thread__fork, from David Ahern.
>
> New features:
>
> . Shell completion for 'perf kvm', from Ramkumar Ramachandra.
>
> Refactorings:
>
> . Get rid of panic() like calls in libtraceevent, from Namyung Kim.
>
> . Start carving out symbol parsing routines from perf, just moving routines to
> topic files in tools/lib/symbol/, tools that want to use it need to integrate
> it directly, i.e. no tools/lib/symbol/Makefile is provided.
>
> . Assorted refactoring patches, moving code around and adding
> utility evlist methods that will be used in the IPT patchset,
> from Adrian Hunter.
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Adrian Hunter (5):
> perf tools: Add perf_event_paranoid()
> perf header: Allow header->data_offset to be predetermined
> perf evlist: Add can_select_event() method
> perf tools: Move mem_bswap32/64 to util.c
> perf evlist: Add perf_evlist__to_front()
>
> Arnaldo Carvalho de Melo (1):
> tools lib symbol: Start carving out symbol parsing routines from perf
>
> David Ahern (1):
> perf tools: Fix inverted error verification bug in thread__fork
>
> Namhyung Kim (12):
> tools lib traceevent: Get rid of malloc_or_die() in show_error()
> tools lib traceevent: Get rid of die in add_filter_type()
> tools lib traceevent: Get rid of malloc_or_die() allocate_arg()
> tools lib traceevent: Get rid of malloc_or_die() in read_token()
> tools lib traceevent: Get rid of malloc_or_die() in find_event()
> tools lib traceevent: Get rid of die() in add_right()
> tools lib traceevent: Make add_left() return pevent_errno
> tools lib traceevent: Get rid of die() in reparent_op_arg()
> tools lib traceevent: Refactor create_arg_item()
> tools lib traceevent: Refactor process_filter()
> tools lib traceevent: Make pevent_filter_add_filter_str() return pevent_errno
> tools lib traceevent: Refactor pevent_filter_match() to get rid of die()
>
> Ramkumar Ramachandra (1):
> perf completion: Complete 'perf kvm'
>
> tools/lib/symbol/kallsyms.c | 58 +++++
> tools/lib/symbol/kallsyms.h | 24 ++
> tools/lib/traceevent/event-parse.h | 43 ++-
> tools/lib/traceevent/parse-filter.c | 507 ++++++++++++++++++++++--------------
> tools/perf/MANIFEST | 2 +
> tools/perf/Makefile.perf | 5 +
> tools/perf/perf-completion.sh | 4 +
> tools/perf/util/event.c | 1 +
> tools/perf/util/evlist.c | 20 +-
> tools/perf/util/evlist.h | 5 +
> tools/perf/util/header.c | 3 +-
> tools/perf/util/machine.c | 1 +
> tools/perf/util/record.c | 37 +++
> tools/perf/util/session.c | 21 --
> tools/perf/util/session.h | 2 -
> tools/perf/util/symbol-elf.c | 1 +
> tools/perf/util/symbol.c | 69 +----
> tools/perf/util/symbol.h | 3 -
> tools/perf/util/thread.c | 2 +-
> tools/perf/util/util.c | 41 +++
> tools/perf/util/util.h | 4 +
> 21 files changed, 550 insertions(+), 303 deletions(-)
> create mode 100644 tools/lib/symbol/kallsyms.c
> create mode 100644 tools/lib/symbol/kallsyms.h
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2013-12-16 13:54 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-13 15:11 [GIT PULL 00/20] perf/core improvements and fixes Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 01/20] tools lib symbol: Start carving out symbol parsing routines from perf Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 02/20] perf tools: Add perf_event_paranoid() Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 03/20] perf header: Allow header->data_offset to be predetermined Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 04/20] perf evlist: Add can_select_event() method Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 05/20] perf tools: Move mem_bswap32/64 to util.c Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 06/20] perf tools: Fix inverted error verification bug in thread__fork Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 07/20] perf evlist: Add perf_evlist__to_front() Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 08/20] perf completion: Complete 'perf kvm' Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 09/20] tools lib traceevent: Get rid of malloc_or_die() in show_error() Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 10/20] tools lib traceevent: Get rid of die in add_filter_type() Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 11/20] tools lib traceevent: Get rid of malloc_or_die() allocate_arg() Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 12/20] tools lib traceevent: Get rid of malloc_or_die() in read_token() Arnaldo Carvalho de Melo
2013-12-13 15:11 ` [PATCH 13/20] tools lib traceevent: Get rid of malloc_or_die() in find_event() Arnaldo Carvalho de Melo
2013-12-13 15:12 ` [PATCH 14/20] tools lib traceevent: Get rid of die() in add_right() Arnaldo Carvalho de Melo
2013-12-13 15:12 ` [PATCH 15/20] tools lib traceevent: Make add_left() return pevent_errno Arnaldo Carvalho de Melo
2013-12-13 15:12 ` [PATCH 16/20] tools lib traceevent: Get rid of die() in reparent_op_arg() Arnaldo Carvalho de Melo
2013-12-13 15:12 ` [PATCH 17/20] tools lib traceevent: Refactor create_arg_item() Arnaldo Carvalho de Melo
2013-12-13 15:12 ` [PATCH 18/20] tools lib traceevent: Refactor process_filter() Arnaldo Carvalho de Melo
2013-12-13 15:12 ` [PATCH 19/20] tools lib traceevent: Make pevent_filter_add_filter_str() return pevent_errno Arnaldo Carvalho de Melo
2013-12-13 15:12 ` [PATCH 20/20] tools lib traceevent: Refactor pevent_filter_match() to get rid of die() Arnaldo Carvalho de Melo
2013-12-16 13:54 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-03-28 1:38 [GIT PULL 00/20] perf/core improvements and fixes Arnaldo Carvalho de Melo
2017-03-28 5:45 ` Ingo Molnar
2017-03-24 14:57 Arnaldo Carvalho de Melo
2017-03-24 18:39 ` Ingo Molnar
2016-12-05 21:37 Arnaldo Carvalho de Melo
2016-12-06 8:17 ` Ingo Molnar
2015-03-03 3:25 Arnaldo Carvalho de Melo
2015-03-03 6:20 ` Ingo Molnar
2015-03-10 10:03 ` Ingo Molnar
2015-03-10 14:03 ` Arnaldo Carvalho de Melo
2015-03-10 14:37 ` Ingo Molnar
2014-09-17 21:24 Arnaldo Carvalho de Melo
2014-09-19 5:15 ` Ingo Molnar
2012-09-11 23:52 Arnaldo Carvalho de Melo
2012-09-13 15:15 ` Ingo Molnar
2012-07-05 15:44 Arnaldo Carvalho de Melo
2012-07-06 8:22 ` Ingo Molnar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20131216135401.GA3393@gmail.com \
--to=mingo@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@ghostprotocols.net \
--cc=acme@infradead.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=artagnon@gmail.com \
--cc=bp@alien8.de \
--cc=dsahern@gmail.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=namhyung.kim@lge.com \
--cc=paulus@samba.org \
--cc=rostedt@goodmis.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).