Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea80907f authored by françois romieu's avatar françois romieu Committed by David S. Miller
Browse files

r8169: fix sleeping while holding spinlock.



As device_set_wakeup_enable can now sleep, move the call to outside
the critical section.

Signed-off-by: default avatarDaniel J Blueman <daniel.blueman@gmail.com>
Acked-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
Acked-by: default avatarAndrew Hendry <andrew.hendry@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 53f57357
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -846,10 +846,10 @@ static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
	else
		tp->features &= ~RTL_FEATURE_WOL;
	__rtl8169_set_wol(tp, wol->wolopts);
	device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);

	spin_unlock_irq(&tp->lock);

	device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);

	return 0;
}