Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753593AbdIDLpR (ORCPT ); Mon, 4 Sep 2017 07:45:17 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:5535 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753556AbdIDLpO (ORCPT ); Mon, 4 Sep 2017 07:45:14 -0400 Subject: Re: [PATCH v6 3/7] acpi: apei: remove the unused code To: James Morse References: <1503916701-13516-1-git-send-email-gengdongjiu@huawei.com> <1503916701-13516-4-git-send-email-gengdongjiu@huawei.com> <59A84C51.3000506@arm.com> CC: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , From: gengdongjiu Message-ID: <45c69f99-61dd-e847-368b-20acb61b4d50@huawei.com> Date: Mon, 4 Sep 2017 19:43:59 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 MIME-Version: 1.0 In-Reply-To: <59A84C51.3000506@arm.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.142.68.147] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A090205.59AD3C92.0049,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2014-11-16 11:51:01, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: 6aea827d4abb4629158d40f81c60ee8e Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3424 Lines: 109 Hi James, On 2017/9/1 1:50, James Morse wrote: > Hi Dongjiu Geng, > > On 28/08/17 11:38, Dongjiu Geng wrote: >> In current code logic, the two functions ghes_sea_add() and >> ghes_sea_remove() are only called when CONFIG_ACPI_APEI_SEA >> is defined. If not, it will return errors in the ghes_probe() >> and not contiue. Hence, remove the unnecessary handling when >> CONFIG_ACPI_APEI_SEI is not defined. > > This doesn't match what the patch does. I get this feeling this is needed for > some future patch you haven't included. James, let check the code, when the ghes_probe, if the CONFIG_ACPI_APEI_SEA is not defined. it will return -ENOTSUPP and goto error, and the ghes_sea_add has no chance to execute. similar, if the probe is failed, it should not have chance to execute ghes_sea_remove. static int ghes_probe(struct platform_device *ghes_dev) { struct acpi_hest_generic *generic; struct ghes *ghes = NULL; int rc = -EINVAL; generic = *(struct acpi_hest_generic **)ghes_dev->dev.platform_data; if (!generic->enabled) return -ENODEV; switch (generic->notify.type) { case ACPI_HEST_NOTIFY_POLLED: case ACPI_HEST_NOTIFY_EXTERNAL: case ACPI_HEST_NOTIFY_SCI: case ACPI_HEST_NOTIFY_GSIV: case ACPI_HEST_NOTIFY_GPIO: break; case ACPI_HEST_NOTIFY_SEA: if (!IS_ENABLED(CONFIG_ACPI_APEI_SEA)) { pr_warn(GHES_PFX "Generic hardware error source: %d notified via SEA is not supported\n", generic->header.source_id); rc = -ENOTSUPP; goto err; } break; > > >> change since v5: >> 1. remove the SEI notification type handling, because the SEI is >> asynchronous exception and the address is not accurate. so >> not call memory_failure() to handle it. > > Setting NOTIFY_SEI as the GHES entry's notification type means the OS should > check the GHES->ErrorStatusAddress for CPER records when it receives an > SError-Interrupt, as it may be a notification of an error from this error source. previously I added the NOTIFY_SEI support, but consider the error address in CPER is not accurate and calling memory_failure() may not make sense. so I remove it. > > If you aren't handling the notification, why is this is in the HEST at all? > (and if its not: its not firmware-first) For the SEI notification, may be we can parse and handle the CPER record other than the Error physical address > > > James > > >> diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c >> index d661d452b238..c15a08db2c7c 100644 >> --- a/drivers/acpi/apei/ghes.c >> +++ b/drivers/acpi/apei/ghes.c >> @@ -813,7 +813,6 @@ static struct notifier_block ghes_notifier_hed = { >> .notifier_call = ghes_notify_hed, >> }; >> >> -#ifdef CONFIG_ACPI_APEI_SEA >> static LIST_HEAD(ghes_sea); >> >> /* >> @@ -848,19 +847,6 @@ static void ghes_sea_remove(struct ghes *ghes) >> mutex_unlock(&ghes_list_mutex); >> synchronize_rcu(); >> } >> -#else /* CONFIG_ACPI_APEI_SEA */ >> -static inline void ghes_sea_add(struct ghes *ghes) >> -{ >> - pr_err(GHES_PFX "ID: %d, trying to add SEA notification which is not > supported\n", >> - ghes->generic->header.source_id); >> -} >> - >> -static inline void ghes_sea_remove(struct ghes *ghes) >> -{ >> - pr_err(GHES_PFX "ID: %d, trying to remove SEA notification which is not > supported\n", >> - ghes->generic->header.source_id); >> -} >> -#endif /* CONFIG_ACPI_APEI_SEA */ >> >> #ifdef CONFIG_HAVE_ACPI_APEI_NMI >> /* >> > > > . >