Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 25039
b: refs/heads/master
c: 8df8302
h: refs/heads/master
i:
  25037: 9e48388
  25035: 5c7c10f
  25031: ff627ac
  25023: c86e3e1
v: v3
  • Loading branch information
Linas Vepstas authored and Paul Mackerras committed Apr 1, 2006
1 parent 321677e commit ecaf863
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8c33fd11e3a21a15af35b5831f1516faf53094f1
refs/heads/master: 8df83028cf52e3bf68dfd35a4b1a044b326a4a99
12 changes: 10 additions & 2 deletions trunk/arch/powerpc/platforms/pseries/eeh_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ void handle_eeh_events (struct eeh_event *event)
}

if (frozen_pdn->eeh_freeze_count > EEH_MAX_ALLOWED_FREEZES)
goto hard_fail;
goto excess_failures;

/* If the reset state is a '5' and the time to reset is 0 (infinity)
* or is more then 15 seconds, then mark this as a permanent failure.
Expand Down Expand Up @@ -356,7 +356,7 @@ void handle_eeh_events (struct eeh_event *event)

return;

hard_fail:
excess_failures:
/*
* About 90% of all real-life EEH failures in the field
* are due to poorly seated PCI cards. Only 10% or so are
Expand All @@ -367,7 +367,15 @@ void handle_eeh_events (struct eeh_event *event)
"and has been permanently disabled. Please try reseating\n"
"this device or replacing it.\n",
drv_str, pci_str, frozen_pdn->eeh_freeze_count);
goto perm_error;

hard_fail:
printk(KERN_ERR
"EEH: Unable to recover from failure of PCI device %s - %s\n"
"Please try reseating this device or replacing it.\n",
drv_str, pci_str);

perm_error:
eeh_slot_error_detail(frozen_pdn, 2 /* Permanent Error */);

/* Notify all devices that they're about to go down. */
Expand Down

0 comments on commit ecaf863

Please sign in to comment.