aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/pseries/eeh.c
diff options
context:
space:
mode:
authorLinas Vepstas <linas@austin.ibm.com>2007-08-10 09:27:00 +1000
committerPaul Mackerras <paulus@samba.org>2007-10-02 22:09:56 +1000
commita7fb7ea76e20740c641a9b5401ef45b3b022cb69 (patch)
treed626bf86f098c3513fa1632ad6cb37a72830ef26 /arch/powerpc/platforms/pseries/eeh.c
parent[POWERPC] Fix build errors when BLOCK=n (diff)
downloadlinux-dev-a7fb7ea76e20740c641a9b5401ef45b3b022cb69.tar.xz
linux-dev-a7fb7ea76e20740c641a9b5401ef45b3b022cb69.zip
[POWERPC] pseries: device node status can be "ok" or "okay"
It seems that some versions of firmware will report a device node status as the string "okay". As we are not expecting this string, the device node will be ignored by the EEH subsystem. Which means EEH will not be enabled. When EEH is not enabled, PCI errors will be converted into Machine Check exceptions, and we'll have a very unhappy system. Signed-off-by: Linas Vepstas <linas@austin.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to '')
-rw-r--r--arch/powerpc/platforms/pseries/eeh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh.c b/arch/powerpc/platforms/pseries/eeh.c
index b242c6c34f81..22322b35a0ff 100644
--- a/arch/powerpc/platforms/pseries/eeh.c
+++ b/arch/powerpc/platforms/pseries/eeh.c
@@ -955,7 +955,7 @@ static void *early_enable_eeh(struct device_node *dn, void *data)
pdn->eeh_freeze_count = 0;
pdn->eeh_false_positives = 0;
- if (status && strcmp(status, "ok") != 0)
+ if (status && strncmp(status, "ok", 2) != 0)
return NULL; /* ignore devices with bad status */
/* Ignore bad nodes. */