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 X-Spam-Level: X-Spam-Status: No, score=-10.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2A08CC47089 for ; Thu, 27 May 2021 14:36:07 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id E5294613D8 for ; Thu, 27 May 2021 14:36:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E5294613D8 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org 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=h16OxKuLTGpXJYPmfKJyeM+8uvCzHj73M9uKsJ+Iu5A=; b=lLbnwRMLjoBT0d F2BbgqxVBS5yJj4ItZW5WzkHVaaZ/Udxtr4Paq2N744bnN5tD19UebxZsqrtfa6QhLDNhKwPY9K6U MnMLyO6+up26XiM0qRUCt5z71ac2OBF/0Viv1AwhCDrWh3gRyl2YPohFpjEuuB5LaGHnZLwHG3a1l hFsIlIAdhIF87CJ0lwdAt7eVtBW58tiuBsjn6UmETVPcyLBg7CDOwtgtK/YGuG9cQqb0hiYeL0CPj jw2hPYVji/W3QuQXPVUyMpXr8OA8iFW338jUTT4JtWYkIQUeb3Ys0r+/o8opKJe8My5eDlS1lcDB/ nvOm0DtOZILNlSbfDQoQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1lmH4P-006ofz-7X; Thu, 27 May 2021 14:33:09 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1lmGeQ-006ZnU-Su for linux-arm-kernel@lists.infradead.org; Thu, 27 May 2021 14:06:20 +0000 Received: by mail.kernel.org (Postfix) with ESMTPSA id 56372610A0; Thu, 27 May 2021 14:06:17 +0000 (UTC) Date: Thu, 27 May 2021 15:06:14 +0100 From: Catalin Marinas To: Mark Rutland Cc: linux-arm-kernel@lists.infradead.org, james.morse@arm.com, joey.gouly@arm.com, maz@kernel.org, will@kernel.org Subject: Re: [PATCH v3 00/20] arm64: entry: migrate more code to C Message-ID: <20210527140614.GC8661@arm.com> References: <20210525183302.56293-1-mark.rutland@arm.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210525183302.56293-1-mark.rutland@arm.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210527_070618_995133_C790FCFD X-CRM114-Status: UNSURE ( 8.51 ) X-CRM114-Notice: Please train this message. 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, May 25, 2021 at 07:32:42PM +0100, Mark Rutland wrote: > Mark Rutland (20): > arm64: remove redundant local_daif_mask() in bad_mode() > arm64: entry: unmask IRQ+FIQ after EL0 handling > arm64: entry: convert SError handlers to C > arm64: entry: move arm64_preempt_schedule_irq to entry-common.c > arm64: entry: move preempt logic to C > arm64: entry: add a call_on_irq_stack helper > arm64: entry: convert IRQ+FIQ handlers to C > arm64: entry: organise entry handlers consistently > arm64: entry: organise entry vectors consistently > arm64: entry: consolidate EL1 exception returns > arm64: entry: move bad_mode() to entry-common.c > arm64: entry: improve bad_mode() > arm64: entry: template the entry asm functions > arm64: entry: handle all vectors with C > arm64: entry: fold el1_inv() into el1h_64_sync_handler() > arm64: entry: split bad stack entry > arm64: entry: split SDEI entry > arm64: entry: make NMI entry/exit functions static > arm64: entry: don't instrument entry code with KCOV > arm64: idle: don't instrument idle code with KCOV I can't claim I did an in-depth review (I may if they don't land in for-next/core by next week) but overall the series looks good to me: Acked-by: Catalin Marinas _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel