From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: linux-kernel@vger.kernel.org,
Adrian Hunter <adrian.hunter@intel.com>,
Andi Kleen <ak@linux.intel.com>, Borislav Petkov <bp@suse.de>,
David Ahern <dsahern@gmail.com>, Don Zickus <dzickus@redhat.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jiri Olsa <jolsa@redhat.com>, Michael Petlan <mpetlan@redhat.com>,
Namhyung Kim <namhyung@kernel.org>,
Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Stephane Eranian <eranian@google.com>
Subject: Re: [GIT PULL 0/7] perf/core refactorings and improvements
Date: Thu, 28 May 2015 11:27:15 +0200 [thread overview]
Message-ID: <20150528092715.GA2182@gmail.com> (raw)
In-Reply-To: <20150528002725.GD24859@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Em Wed, May 27, 2015 at 09:05:27PM -0300, Arnaldo Carvalho de Melo escreveu:
> > Hi Ingo,
> >
> > Please consider applying,
>
> Sorry, missed the git-request-pull part, ouch, here it is:
>
> The following changes since commit 6632c4b4e96c668e19173fa17f2c58c60490bac3:
>
> Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2015-05-27 18:42:36 +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 f00898f4e20b286877b8d6d96d6e404661fd7985:
>
> perf tools: Move branch option parsing to own file (2015-05-27 21:02:17 -0300)
>
> ----------------------------------------------------------------
> perf/core refactorings and improvements:
>
> User visible:
>
> - Add hint for 'Too many events are opened.' error message (Jiri Olsa)
>
> Infrastructure:
>
> - Protect accesses to map rbtrees with a lock and refcount struct map,
> reducing memory usage as maps not used get freed. The 'dso' struct is
> next in line. (Arnaldo Carvalho de Melo)
>
> - Annotation and branch related option parsing refactorings to
> share code with upcoming patches (Andi Kleen)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Andi Kleen (2):
> perf annotation: Add symbol__get_annotation
> perf tools: Move branch option parsing to own file
>
> Arnaldo Carvalho de Melo (4):
> perf tools: Introduce struct maps
> perf tools: Protect accesses the map rbtrees with a rw lock
> perf tools: Check if a map is still in use when deleting it
> perf tools: Reference count struct map
>
> Jiri Olsa (1):
> perf tools: Add hint for 'Too many events are opened.' error message
>
> tools/perf/builtin-annotate.c | 4 +
> tools/perf/builtin-record.c | 89 +--------------
> tools/perf/tests/vmlinux-kallsyms.c | 2 +-
> tools/perf/util/Build | 1 +
> tools/perf/util/annotate.c | 21 ++--
> tools/perf/util/event.c | 2 +-
> tools/perf/util/evsel.c | 4 +-
> tools/perf/util/machine.c | 3 +-
> tools/perf/util/map.c | 190 +++++++++++++++++++++++----------
> tools/perf/util/map.h | 29 +++--
> tools/perf/util/parse-branch-options.c | 93 ++++++++++++++++
> tools/perf/util/parse-branch-options.h | 5 +
> tools/perf/util/probe-event.c | 8 +-
> tools/perf/util/symbol-elf.c | 2 +
> tools/perf/util/symbol.c | 36 +++++--
> 15 files changed, 315 insertions(+), 174 deletions(-)
> create mode 100644 tools/perf/util/parse-branch-options.c
> create mode 100644 tools/perf/util/parse-branch-options.h
Pulled, thanks a lot Arnaldo!
Ingo
prev parent reply other threads:[~2015-05-28 9:27 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-28 0:05 [GIT PULL 0/7] perf/core refactorings and improvements Arnaldo Carvalho de Melo
2015-05-28 0:05 ` [PATCH 1/7] perf tools: Introduce struct maps Arnaldo Carvalho de Melo
2015-05-28 0:05 ` [PATCH 2/7] perf tools: Protect accesses the map rbtrees with a rw lock Arnaldo Carvalho de Melo
2015-05-28 0:05 ` [PATCH 3/7] perf tools: Check if a map is still in use when deleting it Arnaldo Carvalho de Melo
2015-05-28 0:05 ` [PATCH 4/7] perf tools: Reference count struct map Arnaldo Carvalho de Melo
2015-05-28 0:05 ` [PATCH 5/7] perf tools: Add hint for 'Too many events are opened.' error message Arnaldo Carvalho de Melo
2015-05-28 0:05 ` [PATCH 6/7] perf annotation: Add symbol__get_annotation Arnaldo Carvalho de Melo
2015-05-28 0:05 ` [PATCH 7/7] perf tools: Move branch option parsing to own file Arnaldo Carvalho de Melo
2015-05-28 0:27 ` [GIT PULL 0/7] perf/core refactorings and improvements Arnaldo Carvalho de Melo
2015-05-28 9:27 ` Ingo Molnar [this message]
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=20150528092715.GA2182@gmail.com \
--to=mingo@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=bp@suse.de \
--cc=dsahern@gmail.com \
--cc=dzickus@redhat.com \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mpetlan@redhat.com \
--cc=namhyung@kernel.org \
--cc=paulus@samba.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).