From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755652AbcBCKP6 (ORCPT ); Wed, 3 Feb 2016 05:15:58 -0500 Received: from terminus.zytor.com ([198.137.202.10]:54616 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752467AbcBCKPu (ORCPT ); Wed, 3 Feb 2016 05:15:50 -0500 Date: Wed, 3 Feb 2016 02:14:45 -0800 From: tip-bot for Wang Nan Message-ID: Cc: namhyung@kernel.org, will.deacon@arm.com, peterz@infradead.org, jolsa@kernel.org, acme@redhat.com, davem@davemloft.net, masami.hiramatsu.pt@hitachi.com, mingo@kernel.org, daniel@iogearbox.net, wangnan0@huawei.com, brendan.d.gregg@gmail.com, tglx@linutronix.de, ast@kernel.org, hekuang@huawei.com, linux-kernel@vger.kernel.org, lizefan@huawei.com, hpa@zytor.com Reply-To: masami.hiramatsu.pt@hitachi.com, acme@redhat.com, davem@davemloft.net, will.deacon@arm.com, namhyung@kernel.org, jolsa@kernel.org, peterz@infradead.org, hekuang@huawei.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, ast@kernel.org, lizefan@huawei.com, hpa@zytor.com, mingo@kernel.org, wangnan0@huawei.com, brendan.d.gregg@gmail.com, daniel@iogearbox.net In-Reply-To: <1453715801-7732-5-git-send-email-wangnan0@huawei.com> References: <1453715801-7732-5-git-send-email-wangnan0@huawei.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf build: Select all feature checkers for feature-dump Git-Commit-ID: c053a1506faee399cbc2105f2131bb5a5d99eedd X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: c053a1506faee399cbc2105f2131bb5a5d99eedd Gitweb: http://git.kernel.org/tip/c053a1506faee399cbc2105f2131bb5a5d99eedd Author: Wang Nan AuthorDate: Mon, 25 Jan 2016 09:55:51 +0000 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 26 Jan 2016 13:53:10 -0300 perf build: Select all feature checkers for feature-dump Set FEATURE_TESTS to 'all' so all possible feature checkers are executed. Without this setting the output feature dump file miss some feature, for example, liberity. Select all checker so we won't get an incomplete feature dump file. Signed-off-by: Wang Nan Cc: "David S. Miller" Cc: Alexei Starovoitov Cc: Brendan Gregg Cc: Daniel Borkmann Cc: He Kuang Cc: Jiri Olsa Cc: Li Zefan Cc: Masami Hiramatsu Cc: Namhyung Kim Cc: Peter Zijlstra Cc: Will Deacon Link: http://lkml.kernel.org/r/1453715801-7732-5-git-send-email-wangnan0@huawei.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Makefile.perf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 97ce869..0ef3d97 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -165,7 +165,16 @@ ifeq ($(filter-out $(NON_CONFIG_TARGETS),$(MAKECMDGOALS)),) endif endif +# Set FEATURE_TESTS to 'all' so all possible feature checkers are executed. +# Without this setting the output feature dump file misses some features, for +# example, liberty. Select all checkers so we won't get an incomplete feature +# dump file. ifeq ($(config),1) +ifdef MAKECMDGOALS +ifeq ($(filter feature-dump,$(MAKECMDGOALS)),feature-dump) +FEATURE_TESTS := all +endif +endif include config/Makefile endif