]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ACPI / APEI: Fix incorrect return value of ghes_proc()
authorPunit Agrawal <punit.agrawal@arm.com>
Tue, 18 Oct 2016 16:07:19 +0000 (17:07 +0100)
committerJiri Slaby <jslaby@suse.cz>
Thu, 24 Nov 2016 15:23:49 +0000 (16:23 +0100)
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 <punit.agrawa.@arm.com>
Tested-by: Tyler Baicar <tbaicar@codeaurora.org>
Reviewed-by: Borislav Petkov <bp@suse.de>
[ rjw: Subject ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/acpi/apei/ghes.c

index 8ec37bbdd6991939107c4bde2a54d3652290f0e6..74529dc575a26be67d8c380bb334184441edc2b1 100644 (file)
@@ -677,7 +677,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)