qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/4] AER-GHES: Add support for error notification in


From: Pandarathil, Vijaymohan R
Subject: [Qemu-devel] [PATCH 2/4] AER-GHES: Add support for error notification in firmware first approach of AER
Date: Tue, 20 Nov 2012 06:32:11 +0000

    - When an uncorrected recoverable error is reported via an NMI in the
    firmware first model of AER, invoke the callbacks registered for
    notifications as well as mark the device as tainted.

    - Add a new function ghes_mark_dev_err() leveraged from ghes_do_proc()
    to identify the device from the error record and mark it as tainted.

Signed-off-by: Vijay Mohan Pandarathil <address@hidden>
---
 drivers/acpi/apei/ghes.c | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
index 1599566..7b077a7 100644
--- a/drivers/acpi/apei/ghes.c
+++ b/drivers/acpi/apei/ghes.c
@@ -502,6 +502,45 @@ static void ghes_do_proc(const struct 
acpi_hest_generic_status *estatus)
        }
 }
 
+/*
+ * If an uncorrected recoverable PCIe error is reported, the corresponding
+ * PCI device is marked as tainted. The device remains tainted until the
+ * claiming driver does a recovery. The PCI device is identified from the
+ * error record.
+ */
+static void ghes_mark_dev_err(const struct acpi_hest_generic_status *estatus)
+{
+       int sev, sec_sev;
+       struct acpi_hest_generic_data *gdata;
+
+       sev = ghes_severity(estatus->error_severity);
+       apei_estatus_for_each_section(estatus, gdata) {
+               sec_sev = ghes_severity(gdata->error_severity);
+               if (!uuid_le_cmp(*(uuid_le *)gdata->section_type,
+                                     CPER_SEC_PCIE)) {
+                       struct cper_sec_pcie *pcie_err;
+                       pcie_err = (struct cper_sec_pcie *)(gdata+1);
+                       if (sev == GHES_SEV_RECOVERABLE &&
+                                       sec_sev == GHES_SEV_RECOVERABLE &&
+                                       pcie_err->validation_bits &
+                                               CPER_PCIE_VALID_DEVICE_ID &&
+                                       pcie_err->validation_bits &
+                                               CPER_PCIE_VALID_AER_INFO) {
+                               unsigned int devfn;
+                               struct pci_dev *pdev;
+                               devfn = PCI_DEVFN(pcie_err->device_id.device,
+                                                 pcie_err->device_id.function);
+                               pdev = pci_get_domain_bus_and_slot(
+                                               pcie_err->device_id.segment,
+                                               pcie_err->device_id.bus,
+                                               devfn);
+                               if (!pdev)
+                                       continue;
+                               pdev->dev_flags |= PCI_DEV_FLAGS_ERR_DETECTED;
+                       }
+               }
+       }
+}
 static void __ghes_print_estatus(const char *pfx,
                                 const struct acpi_hest_generic *generic,
                                 const struct acpi_hest_generic_status *estatus)
@@ -868,6 +907,8 @@ static int ghes_notify_nmi(unsigned int cmd, struct pt_regs 
*regs)
                        estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
                        memcpy(estatus, ghes->estatus, len);
                        llist_add(&estatus_node->llnode, &ghes_estatus_llist);
+                       ghes_mark_dev_err(estatus);
+                       aer_notify(0, NULL);
                }
 next:
 #endif
-- 
1.7.11.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]