From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: linux-kernel@vger.kernel.org, David Ahern <dsahern@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Irina Tirdea <irina.tirdea@intel.com>,
Jiri Olsa <jolsa@redhat.com>, Mike Galbraith <efault@gmx.de>,
Namhyung Kim <namhyung@gmail.com>,
Namhyung Kim <namhyung.kim@lge.com>,
Paul Mackerras <paulus@samba.org>,
Pekka Enberg <penberg@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Stephane Eranian <eranian@google.com>,
Steven Rostedt <rostedt@goodmis.org>,
arnaldo.melo@gmail.com,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/20] perf/core improvements and fixes
Date: Thu, 13 Sep 2012 17:15:58 +0200 [thread overview]
Message-ID: <20120913151558.GA27521@gmail.com> (raw)
In-Reply-To: <1347407590-30960-1-git-send-email-acme@infradead.org>
* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> Best Regards,
>
> - Arnaldo
>
> The following changes since commit d5cb2aef4fda355fbafe8db4f425b73ea94d2019:
>
> Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2012-09-09 10:39:14 +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 9ec3f4e437ede2f3b5087d412abe16a0219b3b99:
>
> perf sched: Don't read all tracepoint variables in advance (2012-09-11 20:39:19 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes
>
> . Remove die()/exit() calls from several tools.
>
> . Add missing perf_regs.h file to MANIFEST
>
> . Clean up and improve 'perf sched' performance by elliminating lots of
> needless calls to libtraceevent.
>
> . More patches to make perf build on Android, from Irina Tirdea
>
> . Resolve vdso callchains, from Jiri Olsa
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (9):
> perf test: Remove die() calls
> perf sched: Remove die() calls
> perf kmem: Remove die() calls
> perf tools: Add missing perf_regs.h file to MANIFEST
> perf sched: Remove unused thread parameter
> perf sched: Use perf_tool as ancestor
> perf evsel: Introduce perf_evsel__{str,int}val methods
> perf sched: Use perf_evsel__{int,str}val
> perf sched: Don't read all tracepoint variables in advance
>
> Irina Tirdea (5):
> perf tools: include wrapper for magic.h
> perf tools: Update types definitions for Android
> perf tools: include __WORDSIZE definition
> perf tools: fix ALIGN redefinition in system headers
> perf tools: Use __maybe_used for unused variables
>
> Jiri Olsa (4):
> perf tools: Do backtrace post unwind only if we regs and stack were captured
> perf tools: Add memdup function
> perf symbols: Make dsos__find function globally available
> perf tools: Back [vdso] DSO with real data
>
> tools/lib/traceevent/event-parse.c | 8 +-
> tools/lib/traceevent/event-parse.h | 4 +-
> tools/perf/MANIFEST | 1 +
> tools/perf/Makefile | 3 +
> tools/perf/bench/bench.h | 3 +-
> tools/perf/bench/mem-memcpy.c | 2 +-
> tools/perf/bench/mem-memset.c | 2 +-
> tools/perf/bench/sched-messaging.c | 2 +-
> tools/perf/bench/sched-pipe.c | 6 +-
> tools/perf/builtin-annotate.c | 2 +-
> tools/perf/builtin-bench.c | 2 +-
> tools/perf/builtin-buildid-cache.c | 10 +-
> tools/perf/builtin-buildid-list.c | 3 +-
> tools/perf/builtin-diff.c | 4 +-
> tools/perf/builtin-evlist.c | 2 +-
> tools/perf/builtin-help.c | 2 +-
> tools/perf/builtin-inject.c | 24 +-
> tools/perf/builtin-kmem.c | 130 +-
> tools/perf/builtin-kvm.c | 2 +-
> tools/perf/builtin-list.c | 2 +-
> tools/perf/builtin-lock.c | 4 +-
> tools/perf/builtin-probe.c | 24 +-
> tools/perf/builtin-record.c | 10 +-
> tools/perf/builtin-report.c | 11 +-
> tools/perf/builtin-sched.c | 1446 +++++++++-----------
> tools/perf/builtin-script.c | 29 +-
> tools/perf/builtin-stat.c | 40 +-
> tools/perf/builtin-test.c | 23 +-
> tools/perf/builtin-timechart.c | 30 +-
> tools/perf/builtin-top.c | 7 +-
> tools/perf/ui/browser.c | 7 +-
> tools/perf/ui/browsers/annotate.c | 6 +-
> tools/perf/ui/gtk/browser.c | 5 +-
> tools/perf/ui/gtk/setup.c | 2 +-
> tools/perf/ui/gtk/util.c | 4 +-
> tools/perf/ui/helpline.c | 2 +-
> tools/perf/ui/helpline.h | 8 +-
> tools/perf/ui/hist.c | 21 +-
> tools/perf/ui/tui/setup.c | 4 +-
> tools/perf/util/alias.c | 3 +-
> tools/perf/util/annotate.c | 6 +-
> tools/perf/util/annotate.h | 13 +-
> tools/perf/util/build-id.c | 11 +-
> tools/perf/util/cache.h | 6 +-
> tools/perf/util/callchain.c | 6 +-
> tools/perf/util/cgroup.c | 4 +-
> tools/perf/util/config.c | 6 +-
> tools/perf/util/debug.h | 9 +-
> tools/perf/util/event.c | 29 +-
> tools/perf/util/event.h | 2 +-
> tools/perf/util/evsel.c | 35 +
> tools/perf/util/evsel.h | 7 +
> tools/perf/util/header.c | 177 ++-
> tools/perf/util/header.h | 2 +-
> tools/perf/util/help.c | 3 +-
> tools/perf/util/hist.c | 2 +-
> tools/perf/util/hist.h | 32 +-
> tools/perf/util/include/linux/bitops.h | 4 +
> tools/perf/util/include/linux/compiler.h | 8 +-
> tools/perf/util/include/linux/kernel.h | 13 +-
> tools/perf/util/include/linux/magic.h | 12 +
> tools/perf/util/include/linux/string.h | 2 +
> tools/perf/util/include/linux/types.h | 8 +
> tools/perf/util/intlist.c | 4 +-
> tools/perf/util/map.c | 12 +-
> tools/perf/util/map.h | 2 +-
> tools/perf/util/parse-events-test.c | 6 +-
> tools/perf/util/parse-events.c | 7 +-
> tools/perf/util/parse-events.l | 2 +-
> tools/perf/util/parse-events.y | 4 +-
> tools/perf/util/parse-options.c | 3 +-
> tools/perf/util/perf_regs.h | 2 +-
> tools/perf/util/pmu.y | 6 +-
> tools/perf/util/probe-event.c | 21 +-
> tools/perf/util/probe-finder.c | 4 +-
> tools/perf/util/python.c | 8 +-
> .../perf/util/scripting-engines/trace-event-perl.c | 8 +-
> .../util/scripting-engines/trace-event-python.c | 10 +-
> tools/perf/util/session.c | 61 +-
> tools/perf/util/sort.c | 14 +-
> tools/perf/util/string.c | 18 +-
> tools/perf/util/symbol-minimal.c | 28 +-
> tools/perf/util/symbol.c | 6 +-
> tools/perf/util/symbol.h | 8 +-
> tools/perf/util/trace-event-parse.c | 4 +-
> tools/perf/util/trace-event-scripting.c | 33 +-
> tools/perf/util/unwind.c | 36 +-
> tools/perf/util/unwind.h | 11 +-
> tools/perf/util/util.h | 2 +-
> tools/perf/util/vdso.c | 111 ++
> tools/perf/util/vdso.h | 18 +
> tools/perf/util/wrapper.c | 3 +-
> 92 files changed, 1518 insertions(+), 1231 deletions(-)
> create mode 100644 tools/perf/util/include/linux/magic.h
> create mode 100644 tools/perf/util/vdso.c
> create mode 100644 tools/perf/util/vdso.h
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2012-09-13 15:16 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-11 23:52 [GIT PULL 00/20] perf/core improvements and fixes Arnaldo Carvalho de Melo
2012-09-11 23:52 ` [PATCH 01/18] perf test: Remove die() calls Arnaldo Carvalho de Melo
2012-09-12 0:24 ` Namhyung Kim
2012-09-12 1:03 ` Arnaldo Carvalho de Melo
2012-09-12 1:17 ` Namhyung Kim
2012-09-11 23:52 ` [PATCH 02/18] perf sched: " Arnaldo Carvalho de Melo
2012-09-12 0:37 ` Namhyung Kim
2012-09-11 23:52 ` [PATCH 03/18] perf kmem: " Arnaldo Carvalho de Melo
2012-09-11 23:52 ` [PATCH 04/18] perf tools: include wrapper for magic.h Arnaldo Carvalho de Melo
2012-09-11 23:52 ` [PATCH 05/18] perf tools: Add missing perf_regs.h file to MANIFEST Arnaldo Carvalho de Melo
2012-09-11 23:52 ` [PATCH 06/18] perf tools: Update types definitions for Android Arnaldo Carvalho de Melo
2012-09-11 23:52 ` [PATCH 07/18] perf tools: include __WORDSIZE definition Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 08/18] perf tools: fix ALIGN redefinition in system headers Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 09/18] perf tools: Do backtrace post unwind only if we regs and stack were captured Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 10/18] perf tools: Add memdup function Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 11/18] perf symbols: Make dsos__find function globally available Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 12/18] perf tools: Back [vdso] DSO with real data Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 13/18] perf tools: Use __maybe_used for unused variables Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 14/18] perf sched: Remove unused thread parameter Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 15/18] perf sched: Use perf_tool as ancestor Arnaldo Carvalho de Melo
2012-09-12 1:04 ` Namhyung Kim
2012-09-11 23:53 ` [PATCH 16/18] perf evsel: Introduce perf_evsel__{str,int}val methods Arnaldo Carvalho de Melo
2012-09-12 1:40 ` Namhyung Kim
2012-09-12 13:47 ` Arnaldo Carvalho de Melo
2012-09-12 2:21 ` Namhyung Kim
2012-09-12 13:48 ` Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 17/18] perf sched: Use perf_evsel__{int,str}val Arnaldo Carvalho de Melo
2012-09-11 23:53 ` [PATCH 18/18] perf sched: Don't read all tracepoint variables in advance Arnaldo Carvalho de Melo
2012-09-13 15:15 ` 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
2013-12-13 15:11 Arnaldo Carvalho de Melo
2013-12-16 13:54 ` 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=20120913151558.GA27521@gmail.com \
--to=mingo@kernel.org \
--cc=acme@infradead.org \
--cc=acme@redhat.com \
--cc=arnaldo.melo@gmail.com \
--cc=dsahern@gmail.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=irina.tirdea@intel.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=namhyung.kim@lge.com \
--cc=namhyung@gmail.com \
--cc=paulus@samba.org \
--cc=penberg@kernel.org \
--cc=peterz@infradead.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).