commit | 9feed42e93d2625db86423cedf8b4b2bed00779e | [log] [tgz] |
---|---|---|
author | Gavin Shan <shangw@linux.vnet.ibm.com> | Wed Jul 24 10:24:56 2013 +0800 |
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | Wed Jul 24 14:18:47 2013 +1000 |
tree | b0b7601fdd59bacaa9bbfb84b941eefe0ba1043b | |
parent | 807a827d4e7455a40e8f56ec2a67c57a91cab9f7 [diff] |
powerpc/eeh: Use safe list traversal when walking EEH devices Currently, we're trasversing the EEH devices list using list_for_each_entry(). That's not safe enough because the EEH devices might be removed from its parent PE while doing iteration. The patch replaces that with list_for_each_entry_safe(). Signed-off-by: Gavin Shan <shangw@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>