From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 48919C433EF for ; Tue, 8 Mar 2022 20:39:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1350055AbiCHUk2 (ORCPT ); Tue, 8 Mar 2022 15:40:28 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41068 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232840AbiCHUkY (ORCPT ); Tue, 8 Mar 2022 15:40:24 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3BDBF2DD6C for ; Tue, 8 Mar 2022 12:39:27 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 43713B81D86 for ; Tue, 8 Mar 2022 20:39:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7ED9DC340EB; Tue, 8 Mar 2022 20:39:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1646771963; bh=RqP5liVnk/qWzaL7Wv4CE8VKRAtghFN6Lq59XHgbRfk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Wcfn9QffotMhYtEgr9sBJpL61ggHFSnJ/WEDaOlDN2+5LEQvOM8MT+gfXz/9hSv9n G//n8jLCfg0btjbHrK2BkyR4IohsaLfu27kpW88+1xkEQyxhrgzAzf1tqZ6NlDGE8d wcTIPE+3EUfZR+aIUm9UCIJwperEPRGt2guPYxK9xx183cu5WQK8wsmZJmTU2CIVDE NxB7mq9NyoI2WzC8r+auQg/5k2IeLemR007xrQnsuKPYcpzffKRm8qYCYv+A2KLptZ aFz+77b93e9T8G8Bp9cOilPm6HcGP//PPCPi6+KSzqRm3WwufGl4Ut3AMbMKGyzetP yd/DJKVLNxioQ== Date: Tue, 8 Mar 2022 13:39:16 -0700 From: Nathan Chancellor To: Emmanuel Gil Peyrot , Linus Torvalds Cc: Russell King , Catalin Marinas , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ARM: fix compilation error when BPF_SYSCALL is disabled Message-ID: References: <20220308191820.18270-1-linkmauve@linkmauve.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220308191820.18270-1-linkmauve@linkmauve.fr> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Mar 08, 2022 at 08:18:20PM +0100, Emmanuel Gil Peyrot wrote: > It was missing a semicolon. > > Fixes build error introduced in > 25875aa71dfefd1959f07e626c4d285b88b27ac2. > > Signed-off-by: Emmanuel Gil Peyrot Our CI just went red from this as well: https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953090927 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953124502 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953090534 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953086304 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953050829 Reviewed-by: Nathan Chancellor Linus, would it be possible for you apply this directly? > --- > arch/arm/kernel/spectre.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/kernel/spectre.c b/arch/arm/kernel/spectre.c > index e7fea962d632..0dcefc36fb7a 100644 > --- a/arch/arm/kernel/spectre.c > +++ b/arch/arm/kernel/spectre.c > @@ -10,7 +10,7 @@ static bool _unprivileged_ebpf_enabled(void) > #ifdef CONFIG_BPF_SYSCALL > return !sysctl_unprivileged_bpf_disabled; > #else > - return false > + return false; > #endif > } > > -- > 2.35.1 > > From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B5721C433EF for ; Tue, 8 Mar 2022 20:40:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=RP4b6UhBP+2TBhOQzlAnY5tlTWsKQzZ1erJ2/FzOeNE=; b=WJa1Lw6LdcX8uA MUEaYrlVPyeIzv9PO7zCgI3YBYKw1jKDptArLgrSWiQvMYWwJNGfB+csVcfJQJfFagrOJqGgVaIRB McgjTwqwM72/EufVmgyn1cyIcmiusZ4GecpCVFnYKSXoVXU2Pho3PdTDzgMZFX4Zwzoo8U8J51zEc JX09DYKQwT7EssR8kpvRw3WkuTp02egTrY1CpAyPvFJIG8uDRNnxdJPbkRYAsbyl4jAcRnMZ6coWo YiAmoCJHEE3FtuEPk9KrCeBgiqnQB8BoSHCis2gU/H+6YmHEE1H8Z31Vmhu9Wb1OrgIytCGmF7ODN aMf0gmrwmvKY2fGiBLkQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nRgcD-006AuJ-CE; Tue, 08 Mar 2022 20:39:29 +0000 Received: from ams.source.kernel.org ([145.40.68.75]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nRgcA-006Ata-Fm for linux-arm-kernel@lists.infradead.org; Tue, 08 Mar 2022 20:39:28 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 2DBE7B81D85; Tue, 8 Mar 2022 20:39:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7ED9DC340EB; Tue, 8 Mar 2022 20:39:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1646771963; bh=RqP5liVnk/qWzaL7Wv4CE8VKRAtghFN6Lq59XHgbRfk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Wcfn9QffotMhYtEgr9sBJpL61ggHFSnJ/WEDaOlDN2+5LEQvOM8MT+gfXz/9hSv9n G//n8jLCfg0btjbHrK2BkyR4IohsaLfu27kpW88+1xkEQyxhrgzAzf1tqZ6NlDGE8d wcTIPE+3EUfZR+aIUm9UCIJwperEPRGt2guPYxK9xx183cu5WQK8wsmZJmTU2CIVDE NxB7mq9NyoI2WzC8r+auQg/5k2IeLemR007xrQnsuKPYcpzffKRm8qYCYv+A2KLptZ aFz+77b93e9T8G8Bp9cOilPm6HcGP//PPCPi6+KSzqRm3WwufGl4Ut3AMbMKGyzetP yd/DJKVLNxioQ== Date: Tue, 8 Mar 2022 13:39:16 -0700 From: Nathan Chancellor To: Emmanuel Gil Peyrot , Linus Torvalds Cc: Russell King , Catalin Marinas , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ARM: fix compilation error when BPF_SYSCALL is disabled Message-ID: References: <20220308191820.18270-1-linkmauve@linkmauve.fr> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220308191820.18270-1-linkmauve@linkmauve.fr> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220308_123926_700306_675F9191 X-CRM114-Status: GOOD ( 18.11 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Tue, Mar 08, 2022 at 08:18:20PM +0100, Emmanuel Gil Peyrot wrote: > It was missing a semicolon. > > Fixes build error introduced in > 25875aa71dfefd1959f07e626c4d285b88b27ac2. > > Signed-off-by: Emmanuel Gil Peyrot Our CI just went red from this as well: https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953090927 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953124502 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953090534 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953086304 https://github.com/ClangBuiltLinux/continuous-integration2/actions/runs/1953050829 Reviewed-by: Nathan Chancellor Linus, would it be possible for you apply this directly? > --- > arch/arm/kernel/spectre.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/kernel/spectre.c b/arch/arm/kernel/spectre.c > index e7fea962d632..0dcefc36fb7a 100644 > --- a/arch/arm/kernel/spectre.c > +++ b/arch/arm/kernel/spectre.c > @@ -10,7 +10,7 @@ static bool _unprivileged_ebpf_enabled(void) > #ifdef CONFIG_BPF_SYSCALL > return !sysctl_unprivileged_bpf_disabled; > #else > - return false > + return false; > #endif > } > > -- > 2.35.1 > > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel