public inbox for linux-kernel@vger.kernel.org
 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, David Ahern <dsahern@gmail.com>,
	Jiri Olsa <jolsa@redhat.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Namhyung Kim <namhyung@kernel.org>,
	"Naveen N . Rao" <naveen.n.rao@linux.vnet.ibm.com>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	pi3orama@163.com,
	Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>,
	Wang Nan <wangnan0@huawei.com>, Zefan Li <lizefan@huawei.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/12] perf/core fixes
Date: Tue, 12 Jan 2016 11:04:17 +0100	[thread overview]
Message-ID: <20160112100416.GB20997@gmail.com> (raw)
In-Reply-To: <1452555121-21739-1-git-send-email-acme@kernel.org>


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

> Hi Ingo,
> 
> 	Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 3eb9ede23bdd96e9ba60e2b4d4d17a7c35d58448:
> 
>   Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2016-01-09 17:17:33 +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
> 
> for you to fetch changes up to b0500c169b4069e40f03391c7280cd6eaf849e49:
> 
>   perf test: Reset err after using it hold errcode in hist testcases (2016-01-11 19:22:22 -0300)
> 
> ----------------------------------------------------------------
> perf/core fixes:
> 
> Developer stuff:
> 
> - Fix a few clean targets in tools/ (Jiri Olsa)
> 
> - Add missing sources to perf's MANIFEST, fixing the out of tree build with
>   'make perf-tar*-src-pkg' tarballs (Jiri Olsa)
> 
> - Fix bpf related build problems in PowerPC (Naveen N. Rao, Wang Nan)
> 
> - 'make -C tools/perf build-test' fixes (Wang Nan)
> 
> - Fix 'perf test hist' entry (Wang Nan)
> 
> - Add BPF feature check to test-all, as in an environment with all other
>   features enabled, BPF would be considered enabled without doing real
>   feature check.  (Wang Nan)
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Jiri Olsa (4):
>       tools: Add clean targets for tools directory
>       tools bpf: Add *.cmd files clean up
>       tools lockdep: Add *.cmd files clean up
>       perf tools: Add missing sources to perf's MANIFEST
> 
> Naveen N. Rao (1):
>       perf bpf: Fix build breakage due to libbpf
> 
> Wang Nan (7):
>       perf tools: Add -lutil in python lib list for broken python-config
>       perf tools: Fix phony build target for build-test
>       perf tools: Fix PowerPC native building
>       tools: Move Makefile.arch from perf/config to tools/scripts
>       tools build: Add BPF feature check to test-all
>       perf test: Fix false TEST_OK result for 'perf test hist'
>       perf test: Reset err after using it hold errcode in hist testcases
> 
>  tools/Makefile                               | 11 ++++++++++-
>  tools/build/feature/test-all.c               |  5 +++++
>  tools/build/feature/test-bpf.c               | 20 +++++++++++++++++++-
>  tools/lib/bpf/Makefile                       | 18 +++++++++---------
>  tools/lib/bpf/bpf.c                          |  4 ++--
>  tools/lib/lockdep/Makefile                   |  2 +-
>  tools/perf/MANIFEST                          |  2 ++
>  tools/perf/config/Makefile                   |  4 ++--
>  tools/perf/tests/hists_common.c              |  5 -----
>  tools/perf/tests/hists_cumulate.c            |  1 +
>  tools/perf/tests/hists_filter.c              |  1 +
>  tools/perf/tests/hists_link.c                |  1 +
>  tools/perf/tests/hists_output.c              |  1 +
>  tools/perf/tests/make                        | 18 ++++++++++++++++--
>  tools/{perf/config => scripts}/Makefile.arch |  0
>  15 files changed, 70 insertions(+), 23 deletions(-)
>  rename tools/{perf/config => scripts}/Makefile.arch (100%)

Pulled into tip:perf/urgent, thanks a lot Arnaldo!

	Ingo

      parent reply	other threads:[~2016-01-12 10:04 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-11 23:31 [GIT PULL 00/12] perf/core fixes Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 01/12] tools: Add clean targets for tools directory Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 02/12] tools bpf: Add *.cmd files clean up Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 03/12] tools lockdep: " Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 04/12] perf tools: Add missing sources to perf's MANIFEST Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 05/12] perf tools: Add -lutil in python lib list for broken python-config Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 06/12] perf tools: Fix phony build target for build-test Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 07/12] perf tools: Fix PowerPC native building Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 08/12] tools: Move Makefile.arch from perf/config to tools/scripts Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 09/12] perf bpf: Fix build breakage due to libbpf Arnaldo Carvalho de Melo
2016-01-11 23:31 ` [PATCH 10/12] tools build: Add BPF feature check to test-all Arnaldo Carvalho de Melo
2016-01-11 23:32 ` [PATCH 11/12] perf test: Fix false TEST_OK result for 'perf test hist' Arnaldo Carvalho de Melo
2016-01-11 23:32 ` [PATCH 12/12] perf test: Reset err after using it hold errcode in hist testcases Arnaldo Carvalho de Melo
2016-01-12 10:04 ` Ingo Molnar [this message]

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=20160112100416.GB20997@gmail.com \
    --to=mingo@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@kernel.org \
    --cc=acme@redhat.com \
    --cc=dsahern@gmail.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lizefan@huawei.com \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=namhyung@kernel.org \
    --cc=naveen.n.rao@linux.vnet.ibm.com \
    --cc=pi3orama@163.com \
    --cc=sukadev@linux.vnet.ibm.com \
    --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