mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
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>,
	David Ahern <dsahern@gmail.com>, Jiri Olsa <jolsa@redhat.com>,
	Milian Wolff <milian.wolff@kdab.com>,
	Namhyung Kim <namhyung@kernel.org>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Taeung Song <treeze.taeung@gmail.com>,
	Wang Nan <wangnan0@huawei.com>, Yao Jin <yao.jin@linux.intel.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 0/9] perf/urgent fixes
Date: Wed, 13 Sep 2017 09:26:01 +0200	[thread overview]
Message-ID: <20170913072601.k6v4wdfhz6mhjvce@gmail.com> (raw)
In-Reply-To: <20170912192438.1334-1-acme@kernel.org>


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

> Hi Ingo,
> 
> 	So here it is the fixes in perf-core-for-mingo-4.14-20170912, as
> requested, plus one last minute fix from Milian Wolff that helps with
> using perf as an AppImage[1].
> 
> - Arnaldo
> 
> [1] http://appimage.org/
> 
> Test results at the end of this message, as usual.
> 
> The following changes since commit 770e96125515daf1c7bc179323f2e0d488dfe6ac:
> 
>   Merge tag 'perf-core-for-mingo-4.14-20170901' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent (2017-09-05 07:14:28 +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-4.14-20170912
> 
> for you to fetch changes up to dfc9eec7716cc0a9f7eb743c703d74cd2d6085a0:
> 
>   perf stat: Wait for the correct child (2017-09-12 12:49:13 -0300)
> 
> ----------------------------------------------------------------
> perf/urgent fixes:
> 
> - Fix TUI progress bar when delta from new total from that of the
>   previous update is greater than the progress "step" (screen width
>   progress bar block))  (Jiri Olsa)
> 
> - Make tools/lib/api make DEBUG=1 build use -D_FORTIFY_SOURCE=2 not
>   to cripple debuginfo, just like tools/perf/ does (Jiri Olsa)
> 
> - Avoid leaking the 'perf.data' file to workloads started from the
>   'perf record' command line by using the O_CLOEXEC open flag (Jiri Olsa)
> 
> - Fix building when libunwind's 'unwind.h' file is present in the
>   include path, clashing with tools/perf/util/unwind.h (Milian Wolff)
> 
> - Check per .perfconfig section entry flag, not just per section (Taeung Song)
> 
> - Support running perf binaries with a dash in their name, needed to
>   run perf as an AppImage (Milian Wolff)
> 
> - Wait for the right child by using waitpid() when running workloads
>   from 'perf stat', also to fix using perf as an AppImage (Milian Wolff)
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (1):
>       tools include linux: Guard against redefinition of some macros
> 
> Jiri Olsa (4):
>       tools lib api: Fix make DEBUG=1 build
>       perf tools: Open perf.data with O_CLOEXEC flag
>       perf ui progress: Make sure we always define step value
>       perf ui progress: Fix progress update
> 
> Milian Wolff (3):
>       perf tests: Fix compile when libunwind's unwind.h is available
>       perf tools: Support running perf binaries with a dash in their name
>       perf stat: Wait for the correct child
> 
> Taeung Song (1):
>       perf config: Check not only section->from_system_config but also item's
> 
>  tools/include/linux/compiler-gcc.h |  9 ++++++---
>  tools/lib/api/Makefile             |  8 +++++++-
>  tools/perf/builtin-config.c        |  2 +-
>  tools/perf/builtin-stat.c          |  2 +-
>  tools/perf/perf.c                  | 14 ++++++++++----
>  tools/perf/tests/dwarf-unwind.c    |  2 +-
>  tools/perf/ui/progress.c           |  9 +++++++--
>  tools/perf/util/data.c             | 13 ++++++++++++-
>  8 files changed, 45 insertions(+), 14 deletions(-)

Pulled, thanks a lot Arnaldo!

	Ingo

  parent reply	other threads:[~2017-09-13  7:26 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-12 19:24 Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 1/9] tools include linux: Guard against redefinition of some macros Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 2/9] perf tests: Fix compile when libunwind's unwind.h is available Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 3/9] tools lib api: Fix make DEBUG=1 build Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 4/9] perf tools: Open perf.data with O_CLOEXEC flag Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 5/9] perf ui progress: Make sure we always define step value Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 6/9] perf ui progress: Fix progress update Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 7/9] perf config: Check not only section->from_system_config but also item's Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 8/9] perf tools: Support running perf binaries with a dash in their name Arnaldo Carvalho de Melo
2017-09-12 19:24 ` [PATCH 9/9] perf stat: Wait for the correct child Arnaldo Carvalho de Melo
2017-09-13  7:26 ` Ingo Molnar [this message]
2017-09-13  7:38 ` [PATCH] tools/include: Sync kernel ABI headers with tooling headers Ingo Molnar
2017-09-29 20:04   ` [tip:perf/urgent] tools include: " tip-bot for Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2019-12-16 20:47 [GIT PULL 0/9] perf/urgent fixes Arnaldo Carvalho de Melo
2019-12-17 11:28 ` Ingo Molnar
2018-03-06 17:23 Arnaldo Carvalho de Melo
2018-03-07  8:22 ` Ingo Molnar
2018-03-07 14:23   ` Arnaldo Carvalho de Melo
2015-01-21 15:01 Arnaldo Carvalho de Melo
2015-01-28 14:42 ` Ingo Molnar
2013-09-19 18:40 Arnaldo Carvalho de Melo
2013-09-20  5:15 ` Ingo Molnar
2012-03-30 16:09 Arnaldo Carvalho de Melo
2012-03-31  7:31 ` 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=20170913072601.k6v4wdfhz6mhjvce@gmail.com \
    --to=mingo@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@kernel.org \
    --cc=acme@redhat.com \
    --cc=adrian.hunter@intel.com \
    --cc=dsahern@gmail.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=milian.wolff@kdab.com \
    --cc=namhyung@kernel.org \
    --cc=treeze.taeung@gmail.com \
    --cc=wangnan0@huawei.com \
    --cc=yao.jin@linux.intel.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

all inboxes | Powered by JetHome®