From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753141AbcG2PUH (ORCPT ); Fri, 29 Jul 2016 11:20:07 -0400 Received: from terminus.zytor.com ([198.137.202.10]:48912 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751973AbcG2PUB (ORCPT ); Fri, 29 Jul 2016 11:20:01 -0400 Date: Fri, 29 Jul 2016 08:15:15 -0700 From: tip-bot for Josh Poimboeuf Message-ID: Cc: brgerst@gmail.com, jpoimboe@redhat.com, torvalds@linux-foundation.org, peterz@infradead.org, hpa@zytor.com, linux-kernel@vger.kernel.org, bp@alien8.de, luto@kernel.org, mingo@kernel.org, dvlasenk@redhat.com, tglx@linutronix.de Reply-To: luto@kernel.org, dvlasenk@redhat.com, tglx@linutronix.de, mingo@kernel.org, jpoimboe@redhat.com, brgerst@gmail.com, torvalds@linux-foundation.org, peterz@infradead.org, hpa@zytor.com, bp@alien8.de, linux-kernel@vger.kernel.org In-Reply-To: References: To: linux-tip-commits@vger.kernel.org Subject: [tip:core/urgent] objtool: Un-capitalize "Warning" for out-of-sync instruction decoder Git-Commit-ID: 2af04ea545f49bc4ac59b6aaa644312ecd09a78e 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: 2af04ea545f49bc4ac59b6aaa644312ecd09a78e Gitweb: http://git.kernel.org/tip/2af04ea545f49bc4ac59b6aaa644312ecd09a78e Author: Josh Poimboeuf AuthorDate: Thu, 28 Jul 2016 19:15:00 -0500 Committer: Ingo Molnar CommitDate: Fri, 29 Jul 2016 16:57:16 +0200 objtool: Un-capitalize "Warning" for out-of-sync instruction decoder Change "Warning" to "warning" to make it look more like a GCC warning. Hopefully that will be enough to help the 0-day bot or other automated tools catch this warning earlier before it ends up in Linus's tree. Reported-by: Linus Torvalds Signed-off-by: Josh Poimboeuf Cc: Andy Lutomirski Cc: Borislav Petkov Cc: Brian Gerst Cc: Denys Vlasenko Cc: H. Peter Anvin Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/b1669f391a5db91040427fd9f8e1e79db18f9709.1469751119.git.jpoimboe@redhat.com Signed-off-by: Ingo Molnar --- tools/objtool/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/objtool/Makefile b/tools/objtool/Makefile index 0b43770..041b493 100644 --- a/tools/objtool/Makefile +++ b/tools/objtool/Makefile @@ -51,7 +51,7 @@ $(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN) diff -I'^#include' arch/x86/insn/insn.h ../../arch/x86/include/asm/insn.h >/dev/null && \ diff -I'^#include' arch/x86/insn/inat.h ../../arch/x86/include/asm/inat.h >/dev/null && \ diff -I'^#include' arch/x86/insn/inat_types.h ../../arch/x86/include/asm/inat_types.h >/dev/null) \ - || echo "Warning: objtool: x86 instruction decoder differs from kernel" >&2 )) || true + || echo "warning: objtool: x86 instruction decoder differs from kernel" >&2 )) || true $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@