From: Hanjun Guo Date: Thu, 7 May 2020 09:09:18 +0000 (+0800) Subject: ACPI: APEI: Put the HEST table for error path X-Git-Tag: v5.10.7~2501^2~2^3~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=11c7bdffc7433090d3692bb99efcc580405ccac8;p=platform%2Fkernel%2Flinux-rpi.git ACPI: APEI: Put the HEST table for error path hest_tab will be used after hest_init(), but we need to release it for error path. Signed-off-by: Hanjun Guo Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/apei/hest.c b/drivers/acpi/apei/hest.c index 8224024..953a2fa 100644 --- a/drivers/acpi/apei/hest.c +++ b/drivers/acpi/apei/hest.c @@ -243,8 +243,8 @@ void __init acpi_hest_init(void) } else if (ACPI_FAILURE(status)) { const char *msg = acpi_format_exception(status); pr_err(HEST_PFX "Failed to get table, %s\n", msg); - rc = -EINVAL; - goto err; + hest_disable = HEST_DISABLED; + return; } rc = apei_hest_parse(hest_parse_cmc, NULL); @@ -266,4 +266,5 @@ void __init acpi_hest_init(void) return; err: hest_disable = HEST_DISABLED; + acpi_put_table((struct acpi_table_header *)hest_tab); }