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 0B0F3C4332F for ; Mon, 5 Dec 2022 15:43:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233018AbiLEPns (ORCPT ); Mon, 5 Dec 2022 10:43:48 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50954 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232887AbiLEPnc (ORCPT ); Mon, 5 Dec 2022 10:43:32 -0500 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 89BC1AE76; Mon, 5 Dec 2022 07:43:30 -0800 (PST) Received: from canpemm500001.china.huawei.com (unknown [172.30.72.56]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4NQnmZ61PtzJnfJ; Mon, 5 Dec 2022 23:39:58 +0800 (CST) Received: from localhost.localdomain.localdomain (10.175.113.25) by canpemm500001.china.huawei.com (7.192.104.163) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Mon, 5 Dec 2022 23:43:27 +0800 From: Xie XiuQi To: , , , , , , , , , , CC: , , , , Subject: [PATCH v3 0/4] arm64: improve handle synchronous External Data Abort Date: Tue, 6 Dec 2022 00:00:39 +0800 Message-ID: <20221205160043.57465-1-xiexiuqi@huawei.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.113.25] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To canpemm500001.china.huawei.com (7.192.104.163) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series fix some issue for arm64 synchronous External Data Abort. 1. fix unhandled processor error According to the RAS documentation, if we cannot determine the impact of the error based on the details of the error when an SEA occurs, the process cannot safely continue to run. Therefore, for unhandled error, we should signal the system and terminate the process immediately. 2. improve for handling memory errors If error happened in current execution context, we need pass MF_ACTION_REQUIRED flag to memory_failure(), and if memory_failure() recovery failed, we must handle this case, other than ignore it. --- v3: add improve for handing memory errors v2: fix compile warning reported by kernel test robot. Xie XiuQi (4): ACPI: APEI: include missing acpi/apei.h arm64: ghes: fix error unhandling in synchronous External Data Abort arm64: ghes: handle the case when memory_failure recovery failed arm64: ghes: pass MF_ACTION_REQUIRED to memory_failure when sea arch/arm64/kernel/acpi.c | 6 ++++++ drivers/acpi/apei/apei-base.c | 5 +++++ drivers/acpi/apei/ghes.c | 31 ++++++++++++++++++++++++------- include/acpi/apei.h | 1 + include/linux/mm.h | 2 +- mm/memory-failure.c | 24 +++++++++++++++++------- 6 files changed, 54 insertions(+), 15 deletions(-) -- 2.20.1