linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
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,
	Adam Lee <leeadamrobert@gmail.com>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Chris Wilson <chris@chris-wilson.co.uk>,
	David Ahern <dsahern@gmail.com>,
	Fenghua Yu <fenghua.yu@intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Olsa <jolsa@kernel.org>,
	Krister Johansen <kjlx@templeofstupid.com>,
	Namhyung Kim <namhyung@kernel.org>,
	Nicolas Ferre <nicolas.ferre@microchip.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Wang Nan <wangnan0@huawei.com>,
	Yongxin Liu <yongxin.liu@outlook.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 0/7] perf/urgent fixes
Date: Wed, 21 Nov 2018 15:58:28 +0100	[thread overview]
Message-ID: <20181121145828.GA112176@gmail.com> (raw)
In-Reply-To: <20181121142505.27379-1-acme@kernel.org>


* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:

> Hi Ingo,
> 
> 	Please consider pulling, more to come as I process the backlog
> from being away for LPC.
> 
> - Arnaldo
> 
> Test results at the end of this message, as usual.
> 
> The following changes since commit 4d47d6407ac7b4b442a4e717488a3bb137398b6c:
> 
>   perf/x86/intel/uncore: Support CoffeeLake 8th CBOX (2018-11-12 05:03:26 +0100)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-urgent-for-mingo-4.20-20181121
> 
> for you to fetch changes up to a4243e1494532ab8fa679a4134153149a71fa331:
> 
>   perf tools beauty ioctl: Support new ISO7816 commands (2018-11-19 12:38:50 -0800)
> 
> ----------------------------------------------------------------
> perf/urgent fixes:
> 
> - Update kernel ABI headers, one of them lead to a small change in
>   the ioctl 'cmd' beautifier in 'perf trace' to support the new ISO7816
>   commands. (Arnaldo Carvalho de Melo)
> 
> - Restore proper cwd on return from mnt namespace (Jiri Olsa)
> 
> - Add feature check for the get_current_dir_name() function used in the
>   namespace fix from Jiri, that is not available in systems such as
>   Alpine Linux, which uses the  musl libc (Arnaldo Carvalho de Melo)
> 
> - Fix crash in 'perf record' when synthesizing the unit for events such
>   as 'cpu-clock' (Jiri Olsa)
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (5):
>       tools build feature: Check if get_current_dir_name() is available
>       tools headers uapi: Synchronize i915_drm.h
>       tools arch x86: Update tools's copy of cpufeatures.h
>       tools uapi asm-generic: Synchronize ioctls.h
>       perf tools beauty ioctl: Support new ISO7816 commands
> 
> Jiri Olsa (2):
>       perf tools: Fix crash on synthesizing the unit
>       perf tools: Restore proper cwd on return from mnt namespace
> 
>  tools/arch/x86/include/asm/cpufeatures.h        |  2 ++
>  tools/build/Makefile.feature                    |  1 +
>  tools/build/feature/Makefile                    |  4 ++++
>  tools/build/feature/test-all.c                  |  5 +++++
>  tools/build/feature/test-get_current_dir_name.c | 10 ++++++++++
>  tools/include/uapi/asm-generic/ioctls.h         |  2 ++
>  tools/include/uapi/drm/i915_drm.h               | 22 ++++++++++++++++++++++
>  tools/perf/Makefile.config                      |  5 +++++
>  tools/perf/tests/attr/base-record               |  2 +-
>  tools/perf/trace/beauty/ioctl.c                 |  1 +
>  tools/perf/util/Build                           |  1 +
>  tools/perf/util/evsel.c                         |  2 +-
>  tools/perf/util/get_current_dir_name.c          | 18 ++++++++++++++++++
>  tools/perf/util/namespaces.c                    | 17 +++++++++++++++--
>  tools/perf/util/namespaces.h                    |  1 +
>  tools/perf/util/util.h                          |  4 ++++
>  16 files changed, 93 insertions(+), 4 deletions(-)
>  create mode 100644 tools/build/feature/test-get_current_dir_name.c
>  create mode 100644 tools/perf/util/get_current_dir_name.c

Pulled, thanks a lot Arnaldo!

	Ingo

  parent reply	other threads:[~2018-11-21 14:58 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-21 14:24 [GIT PULL 0/7] perf/urgent fixes Arnaldo Carvalho de Melo
2018-11-21 14:24 ` [PATCH 1/7] perf tools: Fix crash on synthesizing the unit Arnaldo Carvalho de Melo
2018-11-21 14:25 ` [PATCH 2/7] tools build feature: Check if get_current_dir_name() is available Arnaldo Carvalho de Melo
2018-11-21 14:25 ` [PATCH 3/7] perf tools: Restore proper cwd on return from mnt namespace Arnaldo Carvalho de Melo
2018-11-21 14:25 ` [PATCH 4/7] tools headers uapi: Synchronize i915_drm.h Arnaldo Carvalho de Melo
2018-11-21 14:25 ` [PATCH 5/7] tools arch x86: Update tools's copy of cpufeatures.h Arnaldo Carvalho de Melo
2018-11-21 14:25 ` [PATCH 6/7] tools uapi asm-generic: Synchronize ioctls.h Arnaldo Carvalho de Melo
2018-11-21 14:25 ` [PATCH 7/7] perf tools beauty ioctl: Support new ISO7816 commands Arnaldo Carvalho de Melo
2018-11-21 14:58 ` Ingo Molnar [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-04-19 12:30 [GIT PULL 0/7] perf/urgent fixes Arnaldo Carvalho de Melo
2019-04-19 17:11 ` Ingo Molnar
2019-04-12 14:29 Arnaldo Carvalho de Melo
2019-04-12 16:33 ` Ingo Molnar
2019-04-12 14:22 Arnaldo Carvalho de Melo
2019-01-21 18:35 Arnaldo Carvalho de Melo
2019-01-22 11:30 ` Ingo Molnar
2018-09-12 18:55 Arnaldo Carvalho de Melo
2018-09-12 19:10 ` Ingo Molnar
2018-05-31 10:32 Arnaldo Carvalho de Melo
2018-05-31 10:40 ` Ingo Molnar
2017-09-29 16:00 Arnaldo Carvalho de Melo
2017-09-29 17:33 ` Ingo Molnar
2015-04-27 17:04 Arnaldo Carvalho de Melo
2015-05-01  6:32 ` Ingo Molnar
2015-02-25 21:05 Arnaldo Carvalho de Melo
2014-04-30 15:32 Jiri Olsa
2014-05-01  6:25 ` 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=20181121145828.GA112176@gmail.com \
    --to=mingo@kernel.org \
    --cc=acme@kernel.org \
    --cc=acme@redhat.com \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=dsahern@gmail.com \
    --cc=fenghua.yu@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jolsa@kernel.org \
    --cc=kjlx@templeofstupid.com \
    --cc=leeadamrobert@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=namhyung@kernel.org \
    --cc=nicolas.ferre@microchip.com \
    --cc=peterz@infradead.org \
    --cc=wangnan0@huawei.com \
    --cc=williams@redhat.com \
    --cc=yongxin.liu@outlook.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).