mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
sky2: Hold RTNL while calling dev_close()
dev_close() must be called holding the RTNL. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
69de8d23d1
commit
68c2889834
@ -4404,7 +4404,9 @@ static int sky2_resume(struct pci_dev *pdev)
|
||||
if (err) {
|
||||
printk(KERN_ERR PFX "%s: could not up: %d\n",
|
||||
dev->name, err);
|
||||
rtnl_lock();
|
||||
dev_close(dev);
|
||||
rtnl_unlock();
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user