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 E903EC433EF for ; Mon, 15 Nov 2021 23:32:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C4CA66325A for ; Mon, 15 Nov 2021 23:32:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1354482AbhKOXdO (ORCPT ); Mon, 15 Nov 2021 18:33:14 -0500 Received: from mail.kernel.org ([198.145.29.99]:44634 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S245328AbhKOTUG (ORCPT ); Mon, 15 Nov 2021 14:20:06 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 181496333A; Mon, 15 Nov 2021 18:32:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1637001158; bh=m6mb1hh/8kd5SvrS94nhiIo7NIJv4/ZsOPBkgmPA6Y8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=koNsMSbAaLUztw5vu8rxtT6d3L9wsbKsRmXfWm9PyMf4fKdQLh4J80d5DXrquLlve hLtd1gH4rnGy+46EPFVYhYh8XIowxO4D/xh+nbZXgyB9O5s5bWhGBFqeG4X1gdHqXK aMd3zjwpzWoLx87Ri2+203fj8n7gLF+CAAzFLggM= 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.15 083/917] evm: mark evm_fixmode as __ro_after_init Date: Mon, 15 Nov 2021 17:52:58 +0100 Message-Id: <20211115165431.567511132@linuxfoundation.org> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211115165428.722074685@linuxfoundation.org> References: <20211115165428.722074685@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)