From patchwork Sun Feb 25 02:18:12 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: takakura@valinux.co.jp X-Patchwork-Id: 13570691 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 DB41BC48BF6 for ; Sun, 25 Feb 2024 02:19:03 +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:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=G7y0dF+sTDjWk0IePMu5RQ2gUcaxwloWGFB3Mje43JU=; b=YIUGDhbiN+rvdv W1iMcMMgbugoJfAfDVzssrlN+rBQ98kujUkrcQkLFqVdD9UD4KnczxomfgUP9GvQcoGAL/3dkt2cy DT5aMpROc/g4J7SeoHCnQhKz0ZZ5h9nKKHOKxxFwgLtJu5dDZrUIEtjUi1crHsgCaMsAFotXS7lAZ N7BRBOrPZKNbkaDk3zarJLR/5SmJZ0NHnSt+sq1kvJqcyTSiAtvNp+s96OrEJz0E2nKkcap953Vs6 uN46Xni5+FsWJv/WxYlB1+pk2x3+2qjpQQgFRXTGN/a5JrVHBuDfuWh7IEPXxIlWa21b+uU2ojB9E NyyRw5gvZ9EaO/w1BRPg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1re46G-0000000E4UU-0SE6; Sun, 25 Feb 2024 02:18:44 +0000 Received: from mail.valinux.co.jp ([210.128.90.3]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1re46D-0000000E4Ty-44pd for linux-arm-kernel@lists.infradead.org; Sun, 25 Feb 2024 02:18:43 +0000 Received: from localhost (localhost [127.0.0.1]) by mail.valinux.co.jp (Postfix) with ESMTP id 6DB74A96E6; Sun, 25 Feb 2024 11:18:36 +0900 (JST) X-Virus-Scanned: Debian amavisd-new at valinux.co.jp Received: from mail.valinux.co.jp ([127.0.0.1]) by localhost (mail.valinux.co.jp [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gJb2ONr3jnWH; Sun, 25 Feb 2024 11:18:36 +0900 (JST) Received: from localhost.localdomain (p10626078-ipngn25201marunouchi.tokyo.ocn.ne.jp [153.201.134.78]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by mail.valinux.co.jp (Postfix) with ESMTPSA id 1944DA96D2; Sun, 25 Feb 2024 11:18:36 +0900 (JST) From: takakura@valinux.co.jp To: catalin.marinas@arm.com, will@kernel.org, ardb@kernel.org, rmk+kernel@armlinux.org.uk, Jonathan.Cameron@huawei.com, gregkh@linuxfoundation.org, james.morse@arm.com, mark.rutland@arm.com Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Ryo Takakura Subject: [PATCH] arm64/kernel/setup: Update comment on interrupt masking Date: Sun, 25 Feb 2024 11:18:12 +0900 Message-Id: <20240225021812.4834-1-takakura@valinux.co.jp> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240224_181842_177424_CAEF21F7 X-CRM114-Status: GOOD ( 11.69 ) 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: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Ryo Takakura DAIF_PROCCTX_NOIRQ contains FIQ bit. Update the comment as only asynchronous aborts are unmasked and FIQ is still masked. Signed-off-by: Ryo Takakura Acked-by: Mark Rutland --- arch/arm64/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c index 0ea45b6d0177..9b9fdb64c684 100644 --- a/arch/arm64/kernel/setup.c +++ b/arch/arm64/kernel/setup.c @@ -298,7 +298,7 @@ void __init __no_sanitize_address setup_arch(char **cmdline_p) dynamic_scs_init(); /* - * Unmask asynchronous aborts and fiq after bringing up possible + * Unmask asynchronous aborts after bringing up possible * earlycon. (Report possible System Errors once we can report this * occurred). */