Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1400504

Re: [GIT PULL 00/10] perf/urgent fixes

From Ingo Molnar <mingo@kernel.org>
Newsgroups linux.kernel
Subject Re: [GIT PULL 00/10] perf/urgent fixes
Date 2016-05-13 07:40 +0200
Message-ID <rydZo-52M-11@gated-at.bofh.it> (permalink)
References <ry55L-4p6-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


* 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

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[GIT PULL 00/10] perf/urgent fixes Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 04/10] perf tools: Use readdir() instead of deprecated readdir_r() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 07/10] tools lib traceevent: Do not reassign parg after collapse_tree() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 08/10] perf evsel: Improve EPERM error handling in open_strerror() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 09/10] perf evsel: Handle EACCESS + perf_event_paranoid=2 in fallback() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 10/10] perf stat: Fallback to user only counters when perf_event_paranoid > 1 Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 02/10] perf script: Use readdir() instead of deprecated readdir_r() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 01/10] perf tools: Use readdir() instead of deprecated readdir_r() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 03/10] perf thread_map: Use readdir() instead of deprecated readdir_r() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
  [PATCH 06/10] perf probe: Check if dwarf_getlocations() is available Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-12 22:10 +0200
    Re: [PATCH 06/10] perf probe: Check if dwarf_getlocations() is  available Masami Hiramatsu <mhiramat@kernel.org> - 2016-05-13 04:40 +0200
      Re: [PATCH 06/10] perf probe: Check if dwarf_getlocations() is  available Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-05-13 13:50 +0200
  Re: [GIT PULL 00/10] perf/urgent fixes Ingo Molnar <mingo@kernel.org> - 2016-05-13 07:40 +0200

csiph-web