diff options
| author | Linas Vepstas <linas@linas.org> | 2005-11-03 19:49:45 -0500 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2005-11-09 19:35:49 -0500 |
| commit | f8632c822719cce08cfb128859e354007744cbba (patch) | |
| tree | 3abc7f6ce623e300d612941225bfeb7695a5dcc6 /arch/ppc64 | |
| parent | 18126f35f69c928af26ec1dda2cb91b23220cdd4 (diff) | |
[PATCH] ppc64: bugfix: don't silently ignore PCI errors
10-EEH-enable-bugfix.patch
Bugfix: With the curent linux-2.6.14-rc2-git6, EEH errors are
ignored because thier detection requires an unused, uninitialized
flag to be set. This patch removes the unused flag.
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc64')
| -rw-r--r-- | arch/ppc64/kernel/eeh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/ppc64/kernel/eeh.c b/arch/ppc64/kernel/eeh.c index 0c52c2de92e..9df1d501836 100644 --- a/arch/ppc64/kernel/eeh.c +++ b/arch/ppc64/kernel/eeh.c | |||
| @@ -631,11 +631,12 @@ int eeh_dn_check_failure(struct device_node *dn, struct pci_dev *dev) | |||
| 631 | pdn = PCI_DN(dn); | 631 | pdn = PCI_DN(dn); |
| 632 | 632 | ||
| 633 | /* Access to IO BARs might get this far and still not want checking. */ | 633 | /* Access to IO BARs might get this far and still not want checking. */ |
| 634 | if (!pdn->eeh_capable || !(pdn->eeh_mode & EEH_MODE_SUPPORTED) || | 634 | if (!(pdn->eeh_mode & EEH_MODE_SUPPORTED) || |
| 635 | pdn->eeh_mode & EEH_MODE_NOCHECK) { | 635 | pdn->eeh_mode & EEH_MODE_NOCHECK) { |
| 636 | __get_cpu_var(ignored_check)++; | 636 | __get_cpu_var(ignored_check)++; |
| 637 | #ifdef DEBUG | 637 | #ifdef DEBUG |
| 638 | printk ("EEH:ignored check for %s %s\n", pci_name (dev), dn->full_name); | 638 | printk ("EEH:ignored check (%x) for %s %s\n", |
| 639 | pdn->eeh_mode, pci_name (dev), dn->full_name); | ||
| 639 | #endif | 640 | #endif |
| 640 | return 0; | 641 | return 0; |
| 641 | } | 642 | } |
