From: Punit Agrawal Date: Tue, 18 Oct 2016 16:07:19 +0000 (+0100) Subject: ACPI / APEI: Fix incorrect return value of ghes_proc() X-Git-Tag: firefly_0821_release~176^2~4^2~13^2~43 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=125e84726d7c61cf10c5eb1b2e6c6df4b3fb3924;p=firefly-linux-kernel-4.4.55.git ACPI / APEI: Fix incorrect return value of ghes_proc() commit 806487a8fc8f385af75ed261e9ab658fc845e633 upstream. Although ghes_proc() tests for errors while reading the error status, it always return success (0). Fix this by propagating the return value. Fixes: d334a49113a4a33 (ACPI, APEI, Generic Hardware Error Source memory error support) Signed-of-by: Punit Agrawal Tested-by: Tyler Baicar Reviewed-by: Borislav Petkov [ rjw: Subject ] Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c index 3dd9c462d22a..8f8da9f92090 100644 --- a/drivers/acpi/apei/ghes.c +++ b/drivers/acpi/apei/ghes.c @@ -657,7 +657,7 @@ static int ghes_proc(struct ghes *ghes) ghes_do_proc(ghes, ghes->estatus); out: ghes_clear_estatus(ghes); - return 0; + return rc; } static void ghes_add_timer(struct ghes *ghes)