[net-next PATCH 1/5] be2net: Use cancel_delayed_work_sync instead of cancel_delayed_work()

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Sathya Perla
Date: Wednesday, June 10, 2009 - 5:18 am

Use cancel_delayed_work_sycn instead of cancel_delayed_work() to reliably kill be_worker() as it rearms itself.

Signed-off-by: Sathya Perla <sathyap@serverengines.com>
---
 drivers/net/benet/be_main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/benet/be_main.c b/drivers/net/benet/be_main.c
index 347d002..69046a1 100644
--- a/drivers/net/benet/be_main.c
+++ b/drivers/net/benet/be_main.c
@@ -1533,7 +1533,7 @@ static int be_close(struct net_device *netdev)
 	struct be_eq_obj *tx_eq = &adapter->tx_eq;
 	int vec;
 
-	cancel_delayed_work(&adapter->work);
+	cancel_delayed_work_sync(&adapter->work);
 
 	netif_stop_queue(netdev);
 	netif_carrier_off(netdev);
-- 
1.6.0.4

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[net-next PATCH 1/5] be2net: Use cancel_delayed_work_sync ..., Sathya Perla, (Wed Jun 10, 5:18 am)
Re: [net-next PATCH 1/5] be2net: Use cancel_delayed_work_s ..., Badalian Vyacheslav, (Wed Jun 10, 5:21 am)