From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Clark Williams <williams@redhat.com>,
linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
Adrian Hunter <adrian.hunter@intel.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Andi Kleen <ak@linux.intel.com>,
Andy Lutomirski <luto@kernel.org>,
Dave Hansen <dave.hansen@linux.intel.com>,
"H . Peter Anvin" <hpa@zytor.com>,
Jin Yao <yao.jin@linux.intel.com>, Jiri Olsa <jolsa@redhat.com>,
Joerg Roedel <joro@8bytes.org>,
Kan Liang <kan.liang@linux.intel.com>,
Peter Zijlstra <peterz@infradead.org>,
Thomas Gleixner <tglx@linutronix.de>,
x86@kernel.org, Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/18] perf/core improvements
Date: Thu, 24 May 2018 07:32:44 +0200 [thread overview]
Message-ID: <20180524053244.GA19588@gmail.com> (raw)
In-Reply-To: <20180523202106.17286-1-acme@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> Test results at the end of this message, as usual.
>
> The following changes since commit 2996123e7e589d78e73cfeb7e7f14d49127eb1b0:
>
> Merge tag 'perf-core-for-mingo-4.18-20180519' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2018-05-19 13:32:53 +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-4.18-20180523
>
> for you to fetch changes up to 22916fdb9c50e8fb303bdcedca88fd8798a85844:
>
> perf kcore_copy: Amend the offset of sections that remap kernel text (2018-05-23 10:26:44 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements:
>
> . Create extra kernel maps to help in decoding samples in x86 PTI entry
> trampolines (Adrian Hunter)
>
> . Copy x86 PTI entry trampoline sections in the kcore copy used for
> annotation and intel_pt CPU traces decoding (Adrian Hunter)
>
> - Support 'perf annotate --group' for non-explicit recorded event
> "groups", showing multiple columns, one for each event, just like
> when dealing with explicit event groups (those enclosed with {}) (Jin Yao)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Adrian Hunter (14):
> perf machine: Add nr_cpus_avail()
> perf machine: Workaround missing maps for x86 PTI entry trampolines
> perf machine: Fix map_groups__split_kallsyms() for entry trampoline symbols
> perf machine: Allow for extra kernel maps
> perf machine: Create maps for x86 PTI entry trampolines
> perf machine: Synthesize and process mmap events for x86 PTI entry trampolines
> perf kcore_copy: Keep phdr data in a list
> perf kcore_copy: Keep a count of phdrs
> perf kcore_copy: Calculate offset from phnum
> perf kcore_copy: Layout sections
> perf kcore_copy: Iterate phdrs
> perf kcore_copy: Get rid of kernel_map
> perf kcore_copy: Copy x86 PTI entry trampoline sections
> perf kcore_copy: Amend the offset of sections that remap kernel text
>
> Jin Yao (4):
> perf evlist: Introduce force_leader() method
> perf report: Use perf_evlist__force_leader to support '--group'
> perf annotate: Support '--group' option
> perf annotate: Show group event string for stdio
>
> tools/perf/arch/x86/util/Build | 2 +
> tools/perf/arch/x86/util/event.c | 76 +++++++++++++
> tools/perf/arch/x86/util/machine.c | 103 +++++++++++++++++
> tools/perf/builtin-annotate.c | 7 ++
> tools/perf/builtin-report.c | 13 +--
> tools/perf/util/annotate.c | 6 +-
> tools/perf/util/env.c | 13 +++
> tools/perf/util/env.h | 1 +
> tools/perf/util/event.c | 36 ++++--
> tools/perf/util/event.h | 8 ++
> tools/perf/util/evlist.c | 15 +++
> tools/perf/util/evlist.h | 3 +
> tools/perf/util/machine.c | 175 +++++++++++++++++++++++++++--
> tools/perf/util/machine.h | 23 ++++
> tools/perf/util/map.c | 22 +++-
> tools/perf/util/map.h | 15 ++-
> tools/perf/util/symbol-elf.c | 219 +++++++++++++++++++++++++++++++------
> tools/perf/util/symbol.c | 49 +++++++--
> 18 files changed, 711 insertions(+), 75 deletions(-)
> create mode 100644 tools/perf/arch/x86/util/event.c
> create mode 100644 tools/perf/arch/x86/util/machine.c
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2018-05-24 5:32 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-23 20:20 [GIT PULL 00/18] perf/core improvements Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 01/18] perf evlist: Introduce force_leader() method Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 02/18] perf report: Use perf_evlist__force_leader to support '--group' Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 03/18] perf annotate: Support '--group' option Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 04/18] perf machine: Add nr_cpus_avail() Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 05/18] perf machine: Workaround missing maps for x86 PTI entry trampolines Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 06/18] perf machine: Fix map_groups__split_kallsyms() for entry trampoline symbols Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 07/18] perf machine: Allow for extra kernel maps Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 08/18] perf machine: Create maps for x86 PTI entry trampolines Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 09/18] perf machine: Synthesize and process mmap events " Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 10/18] perf annotate: Show group event string for stdio Arnaldo Carvalho de Melo
2018-05-23 20:20 ` [PATCH 11/18] perf kcore_copy: Keep phdr data in a list Arnaldo Carvalho de Melo
2018-05-23 20:21 ` [PATCH 12/18] perf kcore_copy: Keep a count of phdrs Arnaldo Carvalho de Melo
2018-05-23 20:21 ` [PATCH 13/18] perf kcore_copy: Calculate offset from phnum Arnaldo Carvalho de Melo
2018-05-23 20:21 ` [PATCH 14/18] perf kcore_copy: Layout sections Arnaldo Carvalho de Melo
2018-05-23 20:21 ` [PATCH 15/18] perf kcore_copy: Iterate phdrs Arnaldo Carvalho de Melo
2018-05-23 20:21 ` [PATCH 16/18] perf kcore_copy: Get rid of kernel_map Arnaldo Carvalho de Melo
2018-05-23 20:21 ` [PATCH 17/18] perf kcore_copy: Copy x86 PTI entry trampoline sections Arnaldo Carvalho de Melo
2018-05-23 20:21 ` [PATCH 18/18] perf kcore_copy: Amend the offset of sections that remap kernel text Arnaldo Carvalho de Melo
2018-05-24 5:32 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-08-01 19:56 [GIT PULL 00/18] perf/core improvements Arnaldo Carvalho de Melo
2017-08-01 19:56 ` Arnaldo Carvalho de Melo
2017-08-10 15:09 ` Ingo Molnar
2017-08-10 15:09 ` 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=20180524053244.GA19588@gmail.com \
--to=mingo@kernel.org \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=dave.hansen@linux.intel.com \
--cc=hpa@zytor.com \
--cc=jolsa@redhat.com \
--cc=joro@8bytes.org \
--cc=kan.liang@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=luto@kernel.org \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
--cc=williams@redhat.com \
--cc=x86@kernel.org \
--cc=yao.jin@linux.intel.com \
/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 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.