powerpc/eeh: Avoid event on passed PE
We must not handle EEH error on devices which are passed to somebody else. Instead, we expect that the frozen device owner detects an EEH error and recovers from it. This avoids EEH error handling on passed through devices so the device owner gets a chance to handle them. Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:

committed by
Benjamin Herrenschmidt

부모
9287b95ec9
커밋
05ec424e38
@@ -400,6 +400,14 @@ int eeh_dev_check_failure(struct eeh_dev *edev)
|
||||
if (ret > 0)
|
||||
return ret;
|
||||
|
||||
/*
|
||||
* If the PE isn't owned by us, we shouldn't check the
|
||||
* state. Instead, let the owner handle it if the PE has
|
||||
* been frozen.
|
||||
*/
|
||||
if (eeh_pe_passed(pe))
|
||||
return 0;
|
||||
|
||||
/* If we already have a pending isolation event for this
|
||||
* slot, we know it's bad already, we don't need to check.
|
||||
* Do this checking under a lock; as multiple PCI devices
|
||||
|
Reference in New Issue
Block a user