aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/pseries/eeh_driver.c
diff options
context:
space:
mode:
authorLinas Vepstas <linas@austin.ibm.com>2007-05-09 09:34:40 +1000
committerPaul Mackerras <paulus@samba.org>2007-05-09 16:35:01 +1000
commitb455b24cf2512e9578a4ddd66ec91c3100c78127 (patch)
tree4066aed9dee5acb9eb6687f2eb4d232815f08757 /arch/powerpc/platforms/pseries/eeh_driver.c
parent[POWERPC] EEH: log error only after driver notification. (diff)
downloadlinux-dev-b455b24cf2512e9578a4ddd66ec91c3100c78127.tar.xz
linux-dev-b455b24cf2512e9578a4ddd66ec91c3100c78127.zip
[POWERPC] EEH: Split up long error msg
Make some minor adjustments to the EEH error messages. 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_driver.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh_driver.c b/arch/powerpc/platforms/pseries/eeh_driver.c
index e5b7635202fd..f07d849cfc84 100644
--- a/arch/powerpc/platforms/pseries/eeh_driver.c
+++ b/arch/powerpc/platforms/pseries/eeh_driver.c
@@ -362,9 +362,11 @@ struct pci_dn * handle_eeh_events (struct eeh_event *event)
}
printk(KERN_WARNING
- "EEH: This PCI device has failed %d times since last reboot: "
- "location=%s driver=%s pci addr=%s\n",
- frozen_pdn->eeh_freeze_count, location, drv_str, pci_str);
+ "EEH: This PCI device has failed %d times in the last hour:\n",
+ frozen_pdn->eeh_freeze_count);
+ printk(KERN_WARNING
+ "EEH: location=%s driver=%s pci addr=%s\n",
+ location, drv_str, pci_str);
/* Walk the various device drivers attached to this slot through
* a reset sequence, giving each an opportunity to do what it needs