From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753277AbdHJQgB (ORCPT ); Thu, 10 Aug 2017 12:36:01 -0400 Received: from terminus.zytor.com ([65.50.211.136]:36003 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752967AbdHJQeB (ORCPT ); Thu, 10 Aug 2017 12:34:01 -0400 Date: Thu, 10 Aug 2017 09:27:49 -0700 From: tip-bot for Ingo Molnar Message-ID: Cc: jdesfossez@efficios.com, dsahern@gmail.com, eranian@google.com, hpa@zytor.com, milian.wolff@kdab.com, sque@chromium.org, namhyung@kernel.org, adrian.hunter@intel.com, wangnan0@huawei.com, jolsa@redhat.com, gbastien@versatic.net, treeze.taeung@gmail.com, acme@redhat.com, tglx@linutronix.de, francis.deslauriers@efficios.com, mathieu.desnoyers@efficios.com, linux-kernel@vger.kernel.org, davidcc@google.com, peterz@infradead.org, alexander.shishkin@linux.intel.com, mliska@suse.cz, mingo@kernel.org, ak@linux.intel.com, pjt@google.com Reply-To: mathieu.desnoyers@efficios.com, linux-kernel@vger.kernel.org, davidcc@google.com, peterz@infradead.org, mingo@kernel.org, alexander.shishkin@linux.intel.com, mliska@suse.cz, pjt@google.com, ak@linux.intel.com, gbastien@versatic.net, treeze.taeung@gmail.com, acme@redhat.com, tglx@linutronix.de, francis.deslauriers@efficios.com, milian.wolff@kdab.com, sque@chromium.org, namhyung@kernel.org, adrian.hunter@intel.com, wangnan0@huawei.com, jolsa@redhat.com, jdesfossez@efficios.com, dsahern@gmail.com, hpa@zytor.com, eranian@google.com In-Reply-To: <20170730093747.qogjn3lp7ntwcgwg@gmail.com> References: <20170730093747.qogjn3lp7ntwcgwg@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf build: Clarify header version warning message Git-Commit-ID: c59796d53b1c96fd8a0a63119820fb81e06e4aa4 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: c59796d53b1c96fd8a0a63119820fb81e06e4aa4 Gitweb: http://git.kernel.org/tip/c59796d53b1c96fd8a0a63119820fb81e06e4aa4 Author: Ingo Molnar AuthorDate: Sun, 30 Jul 2017 11:37:47 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 31 Jul 2017 10:27:56 -0300 perf build: Clarify header version warning message Change this: Warning: arch/x86/include/asm/disabled-features.h differs from kernel Warning: arch/x86/include/asm/cpufeatures.h differs from kernel Warning: arch/powerpc/include/uapi/asm/kvm.h differs from kernel Warning: arch/s390/include/uapi/asm/kvm.h differs from kernel Warning: Kernel ABI header at 'tools/arch/x86/include/asm/disabled-features.h' differs from latest version at 'arch/x86/include/asm/disabled-features.h' Warning: Kernel ABI header at 'tools/arch/x86/include/asm/cpufeatures.h' differs from latest version at 'arch/x86/include/asm/cpufeatures.h' Warning: Kernel ABI header at 'tools/arch/powerpc/include/uapi/asm/kvm.h' differs from latest version at 'arch/powerpc/include/uapi/asm/kvm.h' Warning: Kernel ABI header at 'tools/arch/s390/include/uapi/asm/kvm.h' differs from latest version at 'arch/s390/include/uapi/asm/kvm.h' ... to make it clearer what the warning is about, and to make it easier to diff the two versions when syncing up the files. Signed-off-by: Ingo Molnar Cc: Adrian Hunter Cc: Alexander Shishkin Cc: Andi Kleen Cc: David Ahern Cc: David Carrillo-Cisneros Cc: Francis Deslauriers Cc: Geneviève Bastien Cc: Jiri Olsa Cc: Julien Desfossez Cc: Martin Liška Cc: Mathieu Desnoyers Cc: Milian Wolff Cc: Namhyung Kim Cc: Paul Turner Cc: Peter Zijlstra Cc: Simon Que Cc: Stephane Eranian Cc: Taeung Song Cc: Wang Nan Link: http://lkml.kernel.org/r/20170730093747.qogjn3lp7ntwcgwg@gmail.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/check-headers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/check-headers.sh b/tools/perf/check-headers.sh index 9b62958..d87bc6a 100755 --- a/tools/perf/check-headers.sh +++ b/tools/perf/check-headers.sh @@ -47,7 +47,7 @@ check () { cmd="diff $opts ../$file ../../$file > /dev/null" test -f ../../$file && - eval $cmd || echo "Warning: $file differs from kernel" >&2 + eval $cmd || echo "Warning: Kernel ABI header at 'tools/$file' differs from latest version at '$file'" >&2 }