|
@@ -451,20 +451,30 @@ static void ghes_clear_estatus(struct ghes *ghes)
|
|
|
|
|
|
static void ghes_do_proc(const struct acpi_hest_generic_status *estatus)
|
|
static void ghes_do_proc(const struct acpi_hest_generic_status *estatus)
|
|
{
|
|
{
|
|
- int sev, processed = 0;
|
|
|
|
|
|
+ int sev, sec_sev;
|
|
struct acpi_hest_generic_data *gdata;
|
|
struct acpi_hest_generic_data *gdata;
|
|
|
|
|
|
sev = ghes_severity(estatus->error_severity);
|
|
sev = ghes_severity(estatus->error_severity);
|
|
apei_estatus_for_each_section(estatus, gdata) {
|
|
apei_estatus_for_each_section(estatus, gdata) {
|
|
-#ifdef CONFIG_X86_MCE
|
|
|
|
|
|
+ sec_sev = ghes_severity(gdata->error_severity);
|
|
if (!uuid_le_cmp(*(uuid_le *)gdata->section_type,
|
|
if (!uuid_le_cmp(*(uuid_le *)gdata->section_type,
|
|
CPER_SEC_PLATFORM_MEM)) {
|
|
CPER_SEC_PLATFORM_MEM)) {
|
|
- apei_mce_report_mem_error(
|
|
|
|
- sev == GHES_SEV_CORRECTED,
|
|
|
|
- (struct cper_sec_mem_err *)(gdata+1));
|
|
|
|
- processed = 1;
|
|
|
|
- }
|
|
|
|
|
|
+ struct cper_sec_mem_err *mem_err;
|
|
|
|
+ mem_err = (struct cper_sec_mem_err *)(gdata+1);
|
|
|
|
+#ifdef CONFIG_X86_MCE
|
|
|
|
+ apei_mce_report_mem_error(sev == GHES_SEV_CORRECTED,
|
|
|
|
+ mem_err);
|
|
#endif
|
|
#endif
|
|
|
|
+#ifdef CONFIG_ACPI_APEI_MEMORY_FAILURE
|
|
|
|
+ if (sev == GHES_SEV_RECOVERABLE &&
|
|
|
|
+ sec_sev == GHES_SEV_RECOVERABLE &&
|
|
|
|
+ mem_err->validation_bits & CPER_MEM_VALID_PHYSICAL_ADDRESS) {
|
|
|
|
+ unsigned long pfn;
|
|
|
|
+ pfn = mem_err->physical_addr >> PAGE_SHIFT;
|
|
|
|
+ memory_failure_queue(pfn, 0, 0);
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|