Received: by 2002:a05:6a10:2785:0:0:0:0 with SMTP id ia5csp299407pxb; Fri, 15 Jan 2021 03:41:46 -0800 (PST) X-Google-Smtp-Source: ABdhPJzqcD5zxHk3SCEZ5VmoO6UOARzdctzXp0qStq32A6DTm4OYqJukHZ39uQL/UnJlN2+jp+Es X-Received: by 2002:a17:906:c045:: with SMTP id bm5mr8562144ejb.190.1610710906063; Fri, 15 Jan 2021 03:41:46 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1610710906; cv=none; d=google.com; s=arc-20160816; b=XtT8KeGHDTYPO053cuxKkeBZE8Uh7bNir6h0UAt8B6zbdGr7lrB1lFHV5yq9x1nIAb 8ex+TrxY39Hu7mtLqpYeEa/owmPmLdS+Zcji2loBQc+iptkbvMN2pcvnyyIr5KDZkFgm x2fz0Bc02mHSjNWgWI3BK+Cx8y3h3TwtK/EDza67Oq44Bj2q4M8fdPkzxrkEsifNi6TJ 4+W4Pzsaez8oMqVGTZXpSXtkfZOgsgGCp16c8ety+bvSe1kpaOxxOqA6FH4iwtaHz3Kn eSt6LqZB3HixqX0FtJgeYlp4IQtGtONKyXe81fAONSpAXsNHuddf6bUpVdbrbUZFi9LU l1tg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:user-agent:references:message-id :in-reply-to:subject:cc:to:from:date; bh=aK+ys6S3xugBBE8MOeGuZp0/jOWTKI7pxeBAy5FmelA=; b=Kqn5uezJfDGmLlNBvBr3IgTw9GRj8fYj3KnJsX3LFlsIWCmW4KvPFcpa5RSFQgOhzl mN++GobvBSKIFrRSQRv5JuxJNdp/EmsWx1wBamIr64+Xsfn2i5uxpnrGhCrt0/yuocEa PNPfl50EvhtEKDyicq9xrYs5YYu4p9S7LIZNN94dsV1kaQz/hcWsUbh5mCYLg46Gk1gl L8FTk0rg3vjIinrmVT04bbB8UcjzkSNuVE3evmbFAUUH8v4f6jbB76fzYGcpiw8e7kO+ 0fW+LEuinGBeggGDhutiGPWsIXQaEsaLUfyKjvBSMI8OXscTatKvYITMIrzAZ1BinQNN LJdQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id l11si4027348ejx.27.2021.01.15.03.41.21; Fri, 15 Jan 2021 03:41:46 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726983AbhAOLke (ORCPT + 99 others); Fri, 15 Jan 2021 06:40:34 -0500 Received: from mx2.suse.de ([195.135.220.15]:40246 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726918AbhAOLke (ORCPT ); Fri, 15 Jan 2021 06:40:34 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id CE253ACB0; Fri, 15 Jan 2021 11:39:52 +0000 (UTC) Date: Fri, 15 Jan 2021 12:39:52 +0100 (CET) From: Miroslav Benes To: Josh Poimboeuf cc: x86@kernel.org, linux-kernel@vger.kernel.org, Peter Zijlstra , Borislav Petkov , Julien Thierry , Nick Desaulniers Subject: Re: [PATCH] objtool: Don't fail the kernel build on fatal errors In-Reply-To: <9ec7a9531e99f461e02adc18a4124c921c0ab777.1610664286.git.jpoimboe@redhat.com> Message-ID: References: <9ec7a9531e99f461e02adc18a4124c921c0ab777.1610664286.git.jpoimboe@redhat.com> User-Agent: Alpine 2.21 (LSU 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 14 Jan 2021, Josh Poimboeuf wrote: > This is basically a revert of commit 644592d32837 ("objtool: Fail the > kernel build on fatal errors"). > > That change turned out to be more trouble than it's worth. Failing the > build is an extreme measure which sometimes gets too much attention and > blocks CI build testing. > > These fatal-type warnings aren't yet as rare as we'd hope, due to the > ever-increasing matrix of supported toolchains/plugins and their > fast-changing nature as of late. > > Also, there are more people (and bots) looking for objtool warnings than > ever before, so such warnings not likely to be ignored for long. > > Suggested-by: Nick Desaulniers > Signed-off-by: Josh Poimboeuf Reviewed-by: Miroslav Benes M