From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: 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>,
Anton Blanchard <anton@au1.ibm.com>,
Flavio Bruno Leitner <fbl@redhat.com>,
Jack Henschel <jackdev@mailbox.org>, Jiri Olsa <jolsa@redhat.com>,
Kan Liang <kan.liang@intel.com>,
linuxppc-dev@lists.ozlabs.org,
Madhavan Srinivasan <maddy@linux.vnet.ibm.com>,
Mark Rutland <mark.rutland@arm.com>,
Michael Ellerman <mpe@ellerman.id.au>,
Michael Petlan <mpetlan@redhat.com>,
Namhyung Kim <namhyung@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com>,
Stephane Eranian <eranian@google.com>,
Sukadev Bhattiprolu <sukadev@linu>
Subject: Re: [GIT PULL 00/13] perf/core improvements and fixes
Date: Tue, 5 Sep 2017 07:15:34 +0200 [thread overview]
Message-ID: <20170905051534.p5xzgpcfrizcx67u@gmail.com> (raw)
In-Reply-To: <20170904140044.22912-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 1b2f76d77a277bb70d38ad0991ed7f16bbc115a9:
>
> Merge tag 'perf-core-for-mingo-4.14-20170829' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2017-08-29 23:13:56 +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.14-20170901
>
> for you to fetch changes up to eba9fac017617e685d648339e29a1453a30cb065:
>
> perf annotate browser: Help for cycling thru hottest instructions with TAB/shift+TAB (2017-09-01 14:55:40 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> - Support syscall name glob matching in 'perf trace' (Arnaldo Carvalho de Melo)
>
> e.g.:
>
> # perf trace -e pkey_*
> 32.784 (0.006 ms): pkey/16018 pkey_alloc(init_val: DISABLE_WRITE) = -1 EINVAL Invalid argument
> 32.795 (0.004 ms): pkey/16018 pkey_mprotect(start: 0x7f380d0a6000, len: 4096, prot: READ|WRITE, pkey: -1) = 0
> 32.801 (0.002 ms): pkey/16018 pkey_free(pkey: -1 ) = -1 EINVAL Invalid argument
> ^C#
>
> - Do not auto merge counts for explicitely specified events in
> 'perf stat' (Arnaldo Carvalho de Melo)
>
> - Fix syntax in documentation of .perfconfig intel-pt option (Jack Henschel)
>
> - Calculate the average cycles of iterations for loops detected by the
> branch history support in 'perf report' (Jin Yao)
>
> - Support PERF_SAMPLE_PHYS_ADDR as a sort key "phys_daddr" in the 'script', 'mem',
> 'top' and 'report'. Also add a test entry for it in 'perf test' (Kan Liang)
>
> - Fix 'Object code reading' 'perf test' entry in PowerPC (Ravi Bangoria)
>
> - Remove some duplicate Power9 duplicate vendor events (described in JSON
> files) (Sukadev Bhattiprolu)
>
> - Add help entry in the TUI annotate browser about cycling thru hottest
> instructions with TAB/shift+TAB (Arnaldo Carvalho de Melo)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (4):
> perf syscalltbl: Support glob matching on syscall names
> perf trace: Support syscall name globbing
> perf stat: Only auto-merge events that are PMU aliases
> perf annotate browser: Help for cycling thru hottest instructions with TAB/shift+TAB
>
> Jack Henschel (1):
> perf intel-pt: Fix syntax in documentation of config option
>
> Jin Yao (1):
> perf report: Calculate the average cycles of iterations
>
> Kan Liang (5):
> perf tools: Support new sample type for physical address
> perf sort: Add sort option for physical address
> perf mem: Support physical address
> perf script: Support physical address
> perf test: Add test case for PERF_SAMPLE_PHYS_ADDR
>
> Ravi Bangoria (1):
> perf test powerpc: Fix 'Object code reading' test
>
> Sukadev Bhattiprolu (1):
> perf vendor events powerpc: Remove duplicate events
>
> tools/include/uapi/linux/perf_event.h | 4 +-
> tools/perf/Documentation/intel-pt.txt | 2 +-
> tools/perf/Documentation/perf-mem.txt | 4 +
> tools/perf/Documentation/perf-record.txt | 5 +-
> tools/perf/Documentation/perf-report.txt | 1 +
> tools/perf/Documentation/perf-script.txt | 2 +-
> tools/perf/Documentation/perf-trace.txt | 2 +-
> tools/perf/builtin-mem.c | 97 ++++++++++++-----
> tools/perf/builtin-record.c | 2 +
> tools/perf/builtin-script.c | 15 ++-
> tools/perf/builtin-stat.c | 2 +-
> tools/perf/builtin-trace.c | 39 ++++++-
> tools/perf/perf.h | 1 +
> .../pmu-events/arch/powerpc/power9/frontend.json | 7 +-
> .../perf/pmu-events/arch/powerpc/power9/other.json | 120 ---------------------
> .../pmu-events/arch/powerpc/power9/pipeline.json | 7 +-
> tools/perf/pmu-events/arch/powerpc/power9/pmc.json | 7 +-
> tools/perf/tests/code-reading.c | 5 +
> tools/perf/tests/sample-parsing.c | 6 +-
> tools/perf/ui/browsers/annotate.c | 3 +-
> tools/perf/ui/browsers/hists.c | 8 +-
> tools/perf/ui/stdio/hist.c | 10 +-
> tools/perf/util/callchain.c | 49 ++++-----
> tools/perf/util/callchain.h | 9 +-
> tools/perf/util/event.h | 1 +
> tools/perf/util/evsel.c | 19 +++-
> tools/perf/util/evsel.h | 1 +
> tools/perf/util/hist.c | 4 +
> tools/perf/util/hist.h | 1 +
> tools/perf/util/machine.c | 96 ++++++++++-------
> tools/perf/util/parse-events.c | 24 +++--
> tools/perf/util/session.c | 3 +
> tools/perf/util/sort.c | 42 ++++++++
> tools/perf/util/sort.h | 1 +
> tools/perf/util/symbol.h | 1 +
> tools/perf/util/syscalltbl.c | 33 ++++++
> tools/perf/util/syscalltbl.h | 3 +
> 37 files changed, 368 insertions(+), 268 deletions(-)
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2017-09-05 5:15 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-04 14:00 [GIT PULL 00/13] perf/core improvements and fixes Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 01/13] perf report: Calculate the average cycles of iterations Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 02/13] perf syscalltbl: Support glob matching on syscall names Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 03/13] perf trace: Support syscall name globbing Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 04/13] perf test powerpc: Fix 'Object code reading' test Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 05/13] perf intel-pt: Fix syntax in documentation of config option Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 06/13] perf vendor events powerpc: Remove duplicate events Arnaldo Carvalho de Melo
2017-09-04 16:51 ` Andi Kleen
2017-09-04 14:00 ` [PATCH 07/13] perf tools: Support new sample type for physical address Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 08/13] perf sort: Add sort option " Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 09/13] perf mem: Support " Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 10/13] perf script: " Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 11/13] perf test: Add test case for PERF_SAMPLE_PHYS_ADDR Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 12/13] perf stat: Only auto-merge events that are PMU aliases Arnaldo Carvalho de Melo
2017-09-04 14:00 ` [PATCH 13/13] perf annotate browser: Help for cycling thru hottest instructions with TAB/shift+TAB Arnaldo Carvalho de Melo
2017-09-05 5:15 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-09-19 14:25 [GIT PULL 00/13] perf/core improvements and fixes Arnaldo Carvalho de Melo
2018-09-25 9:21 ` Ingo Molnar
2017-08-21 19:25 Arnaldo Carvalho de Melo
2017-08-22 10:20 ` 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=20170905051534.p5xzgpcfrizcx67u@gmail.com \
--to=mingo@kernel.org \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=anton@au1.ibm.com \
--cc=eranian@google.com \
--cc=fbl@redhat.com \
--cc=jackdev@mailbox.org \
--cc=jolsa@redhat.com \
--cc=kan.liang@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.vnet.ibm.com \
--cc=mark.rutland@arm.com \
--cc=mpe@ellerman.id.au \
--cc=mpetlan@redhat.com \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=ravi.bangoria@linux.vnet.ibm.com \
--cc=sukadev@linu \
/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).