PATCH: EDAC - change default, also handle pulled hardware

From: Alan Cox
Date: Mon Jan 09 2006 - 12:07:10 EST


If a card reports 0xFFFF check if the devid is also all 0xFFFFFFFF and
if so assume the card was pulled rather than showing parity errors. This
avoids us spewing errors when a card is yanked and hotplug hasn't caught
up with it.

Also default PCI scan to off as it has a performance impact and is
relevant to a minority of users only. Users can enable it when they need
it.

Alan

diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.15-mm2/drivers/edac/edac_mc.c linux-2.6.15-mm2/drivers/edac/edac_mc.c
--- linux.vanilla-2.6.15-mm2/drivers/edac/edac_mc.c 2006-01-09 14:33:44.000000000 +0000
+++ linux-2.6.15-mm2/drivers/edac/edac_mc.c 2006-01-09 14:54:10.000000000 +0000
@@ -53,7 +53,7 @@
static int panic_on_ue = 1;
static int poll_msec = 1000;

-static int check_pci_parity = 1; /* default YES check PCI parity */
+static int check_pci_parity = 0; /* default NO check PCI parity */
static int panic_on_pci_parity = 0; /* default no panic on PCI Parity */
static atomic_t pci_parity_count = ATOMIC_INIT(0);

@@ -1755,6 +1755,17 @@

where = secondary ? PCI_SEC_STATUS : PCI_STATUS;
pci_read_config_word(dev, where, &status);
+
+ /* If we get back 0xFFFF then we must suspect that the card has been pulled but
+ the Linux PCI layer has not yet finished cleaning up. We don't want to report
+ on such devices */
+
+ if (status == 0xFFFF) {
+ u32 sanity;
+ pci_read_config_dword(dev, 0, &sanity);
+ if (sanity == 0xFFFFFFFF)
+ return 0;
+ }
status &= PCI_STATUS_DETECTED_PARITY | PCI_STATUS_SIG_SYSTEM_ERROR |
PCI_STATUS_PARITY;


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/