浏览代码

[POWERPC] EEH failure to mark pci slot as frozen.

Bug fix: when marking a slot as frozen, we forgot to mark
pci device itself as frozen. (we did manage to mark the
pci children, but forget the parent itself.)

This is needed so that some device drivers can check the
pci status in critical sections (e.g. in spin loops with
interrupts disabled).

Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Linas Vepstas 18 年之前
父节点
当前提交
022d51b1b2
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      arch/powerpc/platforms/pseries/eeh.c

+ 7 - 0
arch/powerpc/platforms/pseries/eeh.c

@@ -225,6 +225,7 @@ static void __eeh_mark_slot (struct device_node *dn, int mode_flag)
 
 
 void eeh_mark_slot (struct device_node *dn, int mode_flag)
 void eeh_mark_slot (struct device_node *dn, int mode_flag)
 {
 {
+	struct pci_dev *dev;
 	dn = find_device_pe (dn);
 	dn = find_device_pe (dn);
 
 
 	/* Back up one, since config addrs might be shared */
 	/* Back up one, since config addrs might be shared */
@@ -232,6 +233,12 @@ void eeh_mark_slot (struct device_node *dn, int mode_flag)
 		dn = dn->parent;
 		dn = dn->parent;
 
 
 	PCI_DN(dn)->eeh_mode |= mode_flag;
 	PCI_DN(dn)->eeh_mode |= mode_flag;
+
+	/* Mark the pci device too */
+	dev = PCI_DN(dn)->pcidev;
+	if (dev)
+		dev->error_state = pci_channel_io_frozen;
+
 	__eeh_mark_slot (dn->child, mode_flag);
 	__eeh_mark_slot (dn->child, mode_flag);
 }
 }