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>,
Andy Lutomirski <luto@kernel.org>,
David Ahern <dsahern@gmail.com>, Jiri Olsa <jolsa@kernel.org>,
Kees Cook <keescook@chromium.org>,
Linus Torvalds <torvalds@linux-foundation.org>,
Masami Hiramatsu <mhiramat@kernel.org>,
Namhyung Kim <namhyung@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Steven Rostedt <rostedt@goodmis.org>,
Vinson Lee <vlee@freedesktop.org>, Wang Nan <wangnan0@huawei.com>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/10] perf/urgent fixes
Date: Fri, 13 May 2016 07:36:46 +0200 [thread overview]
Message-ID: <20160513053646.GA24504@gmail.com> (raw)
In-Reply-To: <1463083435-12828-1-git-send-email-acme@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Hi Ingo,
>
> Please consider pulling, test built on:
>
> alldeps-fedora-rawhide: Ok
> alldeps-ubuntu-14.04: Ok
> alldeps-ubuntu-16.04: Ok
> alldeps-fedora-20: Ok
> alldeps-ubuntu-12.04: Ok
> minimal-debian-experimental-x-mips64: Ok
> minimal-debian-experimental-x-mips64el: Ok
> minimal-debian-experimental-x-mipsel: Ok
> minimal-ubuntu-x-arm: Ok
> minimal-ubuntu-x-arm64: Ok
> minimal-ubuntu-x-ppc64: Ok
> minimal-ubuntu-x-ppc64el: Ok
> alldeps-debian: Ok
> alldeps-mageia: Ok
> alldeps-rhel7: Ok
> alldeps-centos: Ok
> alldeps-opensuse: Ok
>
> - Arnaldo
>
> The following changes since commit 9f448cd3cbcec8995935e60b27802ae56aac8cc0:
>
> perf/core: Disable the event on a truncated AUX record (2016-05-12 14:46:11 +0200)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-urgent-for-mingo-20160512
>
> for you to fetch changes up to 42ef8a78c1f49f53f29f0f3a6f9a5bcbc653233e:
>
> perf stat: Fallback to user only counters when perf_event_paranoid > 1 (2016-05-12 16:25:18 -0300)
>
> ----------------------------------------------------------------
> perf/urgent fixes:
>
> User visible:
>
> - Fallback to usermode only counters when perf_event_paranoid > 1, which
> is the case now (Arnaldo Carvalho de Melo)
>
> - Do not reassign parg after collapse_tree() in libtraceevent, which
> may cause tool crashes (Steven Rostedt)
>
> Build fixes:
>
> - Fix the build on Fedora Rawhide, where readdir_r() is deprecated and
> also wrt -Werror=unused-const-variable= + x86_32_regoffset_table on
> !x86_64 (Arnaldo Carvalho de Melo)
>
> - Fix the build on Ubuntu 12.04.5, where dwarf_getlocations() isn't
> available, i.e. libdw-dev < 0.157 (Arnaldo Carvalho de Melo)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (9):
> perf tools: Use readdir() instead of deprecated readdir_r()
> perf script: Use readdir() instead of deprecated readdir_r()
> perf thread_map: Use readdir() instead of deprecated readdir_r()
> perf tools: Use readdir() instead of deprecated readdir_r()
> perf dwarf: Guard !x86_64 definitions under #ifdef else clause
> perf probe: Check if dwarf_getlocations() is available
> perf evsel: Improve EPERM error handling in open_strerror()
> perf evsel: Handle EACCESS + perf_event_paranoid=2 in fallback()
> perf stat: Fallback to user only counters when perf_event_paranoid > 1
>
> Steven Rostedt (1):
> tools lib traceevent: Do not reassign parg after collapse_tree()
>
> tools/build/Makefile.feature | 2 +
> tools/build/feature/Makefile | 4 ++
> tools/build/feature/test-all.c | 5 ++
> tools/build/feature/test-dwarf_getlocations.c | 12 +++++
> tools/lib/traceevent/parse-filter.c | 4 +-
> tools/perf/arch/x86/util/dwarf-regs.c | 8 +--
> tools/perf/builtin-script.c | 70 +++++++++++++--------------
> tools/perf/builtin-stat.c | 7 ++-
> tools/perf/config/Makefile | 6 +++
> tools/perf/util/dwarf-aux.c | 9 ++++
> tools/perf/util/event.c | 12 ++---
> tools/perf/util/evsel.c | 23 ++++++++-
> tools/perf/util/parse-events.c | 60 +++++++++++------------
> tools/perf/util/thread_map.c | 8 +--
> 14 files changed, 145 insertions(+), 85 deletions(-)
> create mode 100644 tools/build/feature/test-dwarf_getlocations.c
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2016-05-13 5:36 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-12 20:03 [GIT PULL 00/10] perf/urgent fixes Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 01/10] perf tools: Use readdir() instead of deprecated readdir_r() Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 02/10] perf script: " Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 03/10] perf thread_map: " Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 04/10] perf tools: " Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 05/10] perf dwarf: Guard !x86_64 definitions under #ifdef else clause Arnaldo Carvalho de Melo
2016-05-13 2:14 ` Masami Hiramatsu
2016-05-12 20:03 ` [PATCH 06/10] perf probe: Check if dwarf_getlocations() is available Arnaldo Carvalho de Melo
2016-05-13 2:38 ` Masami Hiramatsu
2016-05-13 11:47 ` Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 07/10] tools lib traceevent: Do not reassign parg after collapse_tree() Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 08/10] perf evsel: Improve EPERM error handling in open_strerror() Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 09/10] perf evsel: Handle EACCESS + perf_event_paranoid=2 in fallback() Arnaldo Carvalho de Melo
2016-05-12 20:03 ` [PATCH 10/10] perf stat: Fallback to user only counters when perf_event_paranoid > 1 Arnaldo Carvalho de Melo
2016-05-13 5:36 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-02-05 19:56 [GIT PULL 00/10] perf/urgent fixes Arnaldo Carvalho de Melo
2018-02-05 21:28 ` Ingo Molnar
2015-01-16 21:22 Arnaldo Carvalho de Melo
2015-01-17 10:06 ` Ingo Molnar
2014-10-29 12:56 Arnaldo Carvalho de Melo
2014-10-30 6:34 ` 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=20160513053646.GA24504@gmail.com \
--to=mingo@kernel.org \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=dsahern@gmail.com \
--cc=jolsa@kernel.org \
--cc=keescook@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@kernel.org \
--cc=mhiramat@kernel.org \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=torvalds@linux-foundation.org \
--cc=vlee@freedesktop.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;
as well as URLs for NNTP newsgroup(s).