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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2F054C433EF for ; Mon, 15 Nov 2021 21:45:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1112B6109E for ; Mon, 15 Nov 2021 21:45:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1351047AbhKOVrs (ORCPT ); Mon, 15 Nov 2021 16:47:48 -0500 Received: from mail.kernel.org ([198.145.29.99]:36922 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241804AbhKOSZL (ORCPT ); Mon, 15 Nov 2021 13:25:11 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id AEFAA632C9; Mon, 15 Nov 2021 17:55:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1636998943; bh=m6mb1hh/8kd5SvrS94nhiIo7NIJv4/ZsOPBkgmPA6Y8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NohRbQbrVA9qLvyd8Xt5rm8X8CAW2OdFm3bDueCEIPANzTvnL14SxMiI4lEh+cJWt Xl8vEfk3CCkIc8MUQW9M5vl51o4G2Qn4p+6C8MlHvmFFU8hrtxyi0SJGLLO2hc1vu3 lm1DCfv3gl/0ol7jdUxuGg0t8MRY1tIWkaF/wr/Y= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Austin Kim , Mimi Zohar Subject: [PATCH 5.14 119/849] evm: mark evm_fixmode as __ro_after_init Date: Mon, 15 Nov 2021 17:53:22 +0100 Message-Id: <20211115165424.114798094@linuxfoundation.org> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211115165419.961798833@linuxfoundation.org> References: <20211115165419.961798833@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Austin Kim commit 32ba540f3c2a7ef61ed5a577ce25069a3d714fc9 upstream. The evm_fixmode is only configurable by command-line option and it is never modified outside initcalls, so declaring it with __ro_after_init is better. Signed-off-by: Austin Kim Cc: stable@vger.kernel.org Signed-off-by: Mimi Zohar Signed-off-by: Greg Kroah-Hartman --- security/integrity/evm/evm_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/security/integrity/evm/evm_main.c +++ b/security/integrity/evm/evm_main.c @@ -78,7 +78,7 @@ static struct xattr_list evm_config_defa LIST_HEAD(evm_config_xattrnames); -static int evm_fixmode; +static int evm_fixmode __ro_after_init; static int __init evm_set_fixmode(char *str) { if (strncmp(str, "fix", 3) == 0)