mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [2.6.37-rc1, patch] gianfar: fix sleep in atomic...
@ 2010-11-02  0:25 Daniel J Blueman
  2010-11-08 23:30 ` Rafael J. Wysocki
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel J Blueman @ 2010-11-02  0:25 UTC (permalink / raw)
  To: David S. Miller; +Cc: Francois Romieu, Linux Kernel

Since device_set_wakeup_enable now sleeps, it should not be called
from a critical section. Since wol_en is not updated elsewhere, we can
omit the locking entirely.

Signed-off-by: Daniel J Blueman <daniel.blueman@gmail.com>

diff --git a/drivers/net/gianfar_ethtool.c b/drivers/net/gianfar_ethtool.c
index 5c566eb..e641d7c 100644
--- a/drivers/net/gianfar_ethtool.c
+++ b/drivers/net/gianfar_ethtool.c
@@ -635,10 +635,8 @@ static int gfar_set_wol(struct net_device *dev,
struct ethtool_wolinfo *wol)
 	if (wol->wolopts & ~WAKE_MAGIC)
 		return -EINVAL;

-	spin_lock_irqsave(&priv->bflock, flags);
 	priv->wol_en = wol->wolopts & WAKE_MAGIC ? 1 : 0;
 	device_set_wakeup_enable(&dev->dev, priv->wol_en);
-	spin_unlock_irqrestore(&priv->bflock, flags);

 	return 0;
 }
-- 
Daniel J Blueman

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-11-12 22:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-02  0:25 [2.6.37-rc1, patch] gianfar: fix sleep in atomic Daniel J Blueman
2010-11-08 23:30 ` Rafael J. Wysocki
2010-11-09 21:54   ` [PATCH] gianfar: Do not call device_set_wakeup_enable() under a spinlock Rafael J. Wysocki
2010-11-12 22:06     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®