Commit bb42a6dd authored by Doug Ledford's avatar Doug Ledford Committed by Roland Dreier

IPoIB: Make ipoib_mcast_stop_thread flush the workqueue

We used to pass a flush variable to mcast_stop_thread to indicate if
we should flush the workqueue or not.  This was due to some code
trying to flush a workqueue that it was currently running on which is
a no-no.  Now that we have per-device work queues, and now that
ipoib_mcast_restart_task has taken the fact that it is queued on a
single thread workqueue with all of the ipoib_mcast_join_task's and
therefore has no need to stop the join task while it runs, we can do
away with the flush parameter and unilaterally flush always.
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent 5141861c
...@@ -499,7 +499,7 @@ void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb); ...@@ -499,7 +499,7 @@ void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb);
void ipoib_mcast_restart_task(struct work_struct *work); void ipoib_mcast_restart_task(struct work_struct *work);
int ipoib_mcast_start_thread(struct net_device *dev); int ipoib_mcast_start_thread(struct net_device *dev);
int ipoib_mcast_stop_thread(struct net_device *dev, int flush); int ipoib_mcast_stop_thread(struct net_device *dev);
void ipoib_mcast_dev_down(struct net_device *dev); void ipoib_mcast_dev_down(struct net_device *dev);
void ipoib_mcast_dev_flush(struct net_device *dev); void ipoib_mcast_dev_flush(struct net_device *dev);
......
...@@ -747,7 +747,7 @@ int ipoib_ib_dev_down(struct net_device *dev, int flush) ...@@ -747,7 +747,7 @@ int ipoib_ib_dev_down(struct net_device *dev, int flush)
clear_bit(IPOIB_FLAG_OPER_UP, &priv->flags); clear_bit(IPOIB_FLAG_OPER_UP, &priv->flags);
netif_carrier_off(dev); netif_carrier_off(dev);
ipoib_mcast_stop_thread(dev, flush); ipoib_mcast_stop_thread(dev);
ipoib_mcast_dev_flush(dev); ipoib_mcast_dev_flush(dev);
ipoib_flush_paths(dev); ipoib_flush_paths(dev);
...@@ -1097,7 +1097,7 @@ void ipoib_ib_dev_cleanup(struct net_device *dev) ...@@ -1097,7 +1097,7 @@ void ipoib_ib_dev_cleanup(struct net_device *dev)
*/ */
ipoib_flush_paths(dev); ipoib_flush_paths(dev);
ipoib_mcast_stop_thread(dev, 1); ipoib_mcast_stop_thread(dev);
ipoib_mcast_dev_flush(dev); ipoib_mcast_dev_flush(dev);
ipoib_transport_dev_cleanup(dev); ipoib_transport_dev_cleanup(dev);
......
...@@ -648,7 +648,7 @@ int ipoib_mcast_start_thread(struct net_device *dev) ...@@ -648,7 +648,7 @@ int ipoib_mcast_start_thread(struct net_device *dev)
return 0; return 0;
} }
int ipoib_mcast_stop_thread(struct net_device *dev, int flush) int ipoib_mcast_stop_thread(struct net_device *dev)
{ {
struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_dev_priv *priv = netdev_priv(dev);
...@@ -659,7 +659,6 @@ int ipoib_mcast_stop_thread(struct net_device *dev, int flush) ...@@ -659,7 +659,6 @@ int ipoib_mcast_stop_thread(struct net_device *dev, int flush)
cancel_delayed_work(&priv->mcast_task); cancel_delayed_work(&priv->mcast_task);
mutex_unlock(&mcast_mutex); mutex_unlock(&mcast_mutex);
if (flush)
flush_workqueue(priv->wq); flush_workqueue(priv->wq);
return 0; return 0;
...@@ -838,8 +837,6 @@ void ipoib_mcast_restart_task(struct work_struct *work) ...@@ -838,8 +837,6 @@ void ipoib_mcast_restart_task(struct work_struct *work)
ipoib_dbg_mcast(priv, "restarting multicast task\n"); ipoib_dbg_mcast(priv, "restarting multicast task\n");
ipoib_mcast_stop_thread(dev, 0);
local_irq_save(flags); local_irq_save(flags);
netif_addr_lock(dev); netif_addr_lock(dev);
spin_lock(&priv->lock); spin_lock(&priv->lock);
...@@ -936,13 +933,10 @@ void ipoib_mcast_restart_task(struct work_struct *work) ...@@ -936,13 +933,10 @@ void ipoib_mcast_restart_task(struct work_struct *work)
* We have to cancel outside of the spinlock, but we have to * We have to cancel outside of the spinlock, but we have to
* take the rtnl lock or else we race with the removal of * take the rtnl lock or else we race with the removal of
* entries from the remove list in mcast_dev_flush as part * entries from the remove list in mcast_dev_flush as part
* of ipoib_stop() which will call mcast_stop_thread with * of ipoib_stop(). We detect the drop of the ADMIN_UP flag
* flush == 1 while holding the rtnl lock, and the * to signal that we have hit this particular race, and we
* flush_workqueue won't complete until this restart_mcast_task * return since we know we don't need to do anything else
* completes. So do like the carrier on task and attempt to * anyway.
* take the rtnl lock, but if we can't before the ADMIN_UP flag
* goes away, then just return and know that the remove list will
* get flushed later by mcast_stop_thread.
*/ */
while (!rtnl_trylock()) { while (!rtnl_trylock()) {
if (!test_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags)) if (!test_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags))
...@@ -954,6 +948,9 @@ void ipoib_mcast_restart_task(struct work_struct *work) ...@@ -954,6 +948,9 @@ void ipoib_mcast_restart_task(struct work_struct *work)
ipoib_mcast_leave(mcast->dev, mcast); ipoib_mcast_leave(mcast->dev, mcast);
ipoib_mcast_free(mcast); ipoib_mcast_free(mcast);
} }
/*
* Restart our join task if needed
*/
ipoib_mcast_start_thread(dev); ipoib_mcast_start_thread(dev);
rtnl_unlock(); rtnl_unlock();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment