From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: linux-kernel@vger.kernel.org,
Arnaldo Carvalho de Melo <acme@redhat.com>,
Adrian Hunter <adrian.hunter@intel.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Andi Kleen <ak@linux.intel.com>, Borislav Petkov <bp@alien8.de>,
David Ahern <dsahern@gmail.com>,
Jan Stancek <jstancek@redhat.com>, Jiri Olsa <jolsa@kernel.org>,
kernel-team@lge.com, Masami Hiramatsu <mhiramat@kernel.org>,
Namhyung Kim <namhyung@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Steven Rostedt <rostedt@goodmis.org>,
Wang Nan <wangnan0@huawei.com>
Subject: Re: [GIT PULL 00/18] perf/core improvements and fixes
Date: Tue, 21 Feb 2017 09:08:17 +0100 [thread overview]
Message-ID: <20170221080817.GA3825@gmail.com> (raw)
In-Reply-To: <20170220190839.3928-1-acme@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> From: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> Test results at the end of this message, as usual.
>
> The following changes since commit 0c8967c9df230d2c4dde6649f410b62e01806c22:
>
> Merge tag 'perf-core-for-mingo-4.11-20170215' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2017-02-16 20:53:13 +0100)
>
> 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.11-20170220
>
> for you to fetch changes up to 68ba32352d51474d163d58e084b62a12bb610b21:
>
> perf record: Honor --quiet option properly (2017-02-20 11:50:36 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> New features:
>
> - Make -a/--all-cpus be the default target in 'perf record' and 'perf stat',
> just like it is with 'perf trace' (Jiri Olsa)
>
> - Introduce -q/--quiet to the 'annotate', 'diff' and 'report', fix up
> its behaviour in 'record'. This makes the output more compact by
> elliminating headers, leaving just the histogram lines (Namhyung Kim)
>
> Fixes:
>
> - Handle offline/absent CPUs (Jan Stancek)
>
> Infrastructure:
>
> - Filter out -specs=/a/b/c from CC options when building the python
> support, allowing that feature to be built with clang (Arnaldo Carvalho de Melo)
>
> - Fix DEBUG=1 build with clang (Arnaldo Carvalho de Melo)
>
> Trivial:
>
> - Fix spelling of 'preempt' in a libtraceevent function name (Steven Rostedt)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (3):
> tools perf scripting python: clang doesn't have -spec, remove it
> perf python: Filter out -specs=/a/b/c from the python binding cc options
> perf session: Fix DEBUG=1 build with clang
>
> Jan Stancek (3):
> perf cpumap: Add cpu__max_present_cpu()
> perf header: Make build_cpu_topology skip offline/absent CPUs
> perf tools: Replace _SC_NPROCESSORS_CONF with max_present_cpu in cpu_topology_map
>
> Jiri Olsa (5):
> perf build: Add special fixdep cleaning rule
> perf tools: Move new_term arguments into struct parse_events_term template
> perf tools: Fail on using multiple bits long terms without value
> perf stat: Add -a as default target
> perf record: Add -a as default target
>
> Namhyung Kim (6):
> perf utils: Add perf_quiet_option()
> perf utils: Check verbose flag properly
> perf report: Add -q/--quiet option
> perf diff: Add -q/--quiet option
> perf annotate: Add -q/--quiet option
> perf record: Honor --quiet option properly
>
> Steven Rostedt (VMware) (1):
> tools lib traceevent: It's preempt not prempt
>
> tools/build/Makefile | 4 +-
> tools/build/Makefile.include | 3 +
> tools/lib/traceevent/event-parse.c | 4 +-
> tools/lib/traceevent/event-parse.h | 2 +-
> tools/perf/Documentation/perf-annotate.txt | 4 ++
> tools/perf/Documentation/perf-diff.txt | 4 ++
> tools/perf/Documentation/perf-record.txt | 2 +-
> tools/perf/Documentation/perf-report.txt | 4 ++
> tools/perf/Documentation/perf-stat.txt | 2 +-
> tools/perf/Makefile.config | 7 +++
> tools/perf/Makefile.perf | 4 +-
> tools/perf/builtin-annotate.c | 4 ++
> tools/perf/builtin-diff.c | 14 +++--
> tools/perf/builtin-mem.c | 4 +-
> tools/perf/builtin-record.c | 8 ++-
> tools/perf/builtin-report.c | 21 +++++--
> tools/perf/builtin-sched.c | 12 ++--
> tools/perf/builtin-stat.c | 11 ++--
> tools/perf/builtin-top.c | 2 +-
> tools/perf/builtin-trace.c | 6 +-
> tools/perf/pmu-events/json.c | 2 +-
> tools/perf/tests/attr.c | 2 +-
> tools/perf/tests/builtin-test.c | 2 +-
> tools/perf/tests/code-reading.c | 2 +-
> tools/perf/tests/fdarray.c | 2 +-
> tools/perf/tests/llvm.c | 2 +-
> tools/perf/tests/parse-events.c | 2 +-
> tools/perf/tests/perf-record.c | 4 +-
> tools/perf/tests/python-use.c | 2 +-
> tools/perf/tests/thread-map.c | 6 +-
> tools/perf/tests/topology.c | 4 +-
> tools/perf/tests/vmlinux-kallsyms.c | 2 +-
> tools/perf/ui/browsers/map.c | 6 +-
> tools/perf/ui/hist.c | 2 +-
> tools/perf/util/annotate.c | 2 +-
> tools/perf/util/cpumap.c | 22 +++++++
> tools/perf/util/cpumap.h | 1 +
> tools/perf/util/debug.c | 17 ++++++
> tools/perf/util/debug.h | 1 +
> tools/perf/util/dso.c | 2 +-
> tools/perf/util/env.c | 2 +-
> tools/perf/util/header.c | 33 ++++++----
> tools/perf/util/hist.c | 6 +-
> tools/perf/util/parse-events.c | 71 +++++++++++++---------
> tools/perf/util/parse-events.h | 2 +
> tools/perf/util/parse-events.y | 14 ++---
> tools/perf/util/pmu.c | 21 +++++--
> tools/perf/util/probe-event.c | 2 +-
> .../util/scripting-engines/trace-event-python.c | 4 +-
> tools/perf/util/session.c | 2 +-
> tools/perf/util/setup.py | 9 ++-
> tools/perf/util/sort.c | 8 +--
> tools/perf/util/stat.c | 2 +-
> tools/perf/util/symbol-elf.c | 2 +-
> 54 files changed, 256 insertions(+), 129 deletions(-)
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2017-02-21 8:08 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-20 19:08 Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 01/18] tools perf scripting python: clang doesn't have -spec, remove it Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 02/18] perf python: Filter out -specs=/a/b/c from the python binding cc options Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 03/18] tools lib traceevent: It's preempt not prempt Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 04/18] perf session: Fix DEBUG=1 build with clang Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 05/18] perf cpumap: Add cpu__max_present_cpu() Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 06/18] perf header: Make build_cpu_topology skip offline/absent CPUs Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 07/18] perf tools: Replace _SC_NPROCESSORS_CONF with max_present_cpu in cpu_topology_map Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 08/18] perf build: Add special fixdep cleaning rule Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 09/18] perf tools: Move new_term arguments into struct parse_events_term template Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 10/18] perf tools: Fail on using multiple bits long terms without value Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 11/18] perf stat: Add -a as default target Arnaldo Carvalho de Melo
2017-02-20 19:15 ` Borislav Petkov
2017-02-20 19:55 ` Arnaldo Carvalho de Melo
2017-02-20 19:59 ` Borislav Petkov
2017-02-21 7:49 ` Jiri Olsa
2017-02-20 19:08 ` [PATCH 12/18] perf record: " Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 13/18] perf utils: Add perf_quiet_option() Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 14/18] perf utils: Check verbose flag properly Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 15/18] perf report: Add -q/--quiet option Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 16/18] perf diff: " Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 17/18] perf annotate: " Arnaldo Carvalho de Melo
2017-02-20 19:08 ` [PATCH 18/18] perf record: Honor --quiet option properly Arnaldo Carvalho de Melo
2017-02-21 8:08 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-05-19 10:54 [GIT PULL 00/18] perf/core improvements and fixes Arnaldo Carvalho de Melo
2018-05-19 11:33 ` Ingo Molnar
2017-08-29 19:42 Arnaldo Carvalho de Melo
2017-08-29 21:15 ` Ingo Molnar
2017-04-12 0:51 Arnaldo Carvalho de Melo
2017-04-12 5:30 ` Ingo Molnar
2017-04-12 7:13 ` Christian Borntraeger
2017-04-12 7:24 ` Ingo Molnar
2016-11-23 16:40 Arnaldo Carvalho de Melo
2016-11-24 4:10 ` Ingo Molnar
2016-06-27 21:01 Arnaldo Carvalho de Melo
2016-06-28 7:02 ` Ingo Molnar
2016-06-28 8:27 ` Jiri Olsa
2016-06-28 14:01 ` Arnaldo Carvalho de Melo
2016-06-28 14:12 ` Arnaldo Carvalho de Melo
2016-06-29 9:36 ` Ingo Molnar
2015-07-24 1:58 Arnaldo Carvalho de Melo
2015-07-27 15:58 ` Ingo Molnar
2015-05-18 15:50 Arnaldo Carvalho de Melo
2015-05-20 11:25 ` Ingo Molnar
2014-12-16 16:57 Arnaldo Carvalho de Melo
2014-12-17 14:50 ` Arnaldo Carvalho de Melo
2014-12-18 6:24 ` Ingo Molnar
2014-12-11 21:25 Arnaldo Carvalho de Melo
2014-12-12 8:10 ` Ingo Molnar
2014-11-06 21:04 Arnaldo Carvalho de Melo
2014-11-07 5:24 ` Ingo Molnar
2014-08-15 16:49 Arnaldo Carvalho de Melo
2014-08-18 8:18 ` Ingo Molnar
2014-08-15 16:48 Arnaldo Carvalho de Melo
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=20170221080817.GA3825@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=bp@alien8.de \
--cc=dsahern@gmail.com \
--cc=jolsa@kernel.org \
--cc=jstancek@redhat.com \
--cc=kernel-team@lge.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mhiramat@kernel.org \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=wangnan0@huawei.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome