sunvnet: Schedule maybe_tx_wakeup() as a tasklet from ldc_rx path
At the tail of vnet_event(), if we hit the maybe_tx_wakeup() condition, we try to take the netif_tx_lock() in the recv-interrupt-context and can deadlock with dev_watchdog(). vnet_event() should schedule maybe_tx_wakeup() as a tasklet to avoid this deadlock Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
adddc32d6f
Коммит
1d311ad2f9
|
@ -488,8 +488,9 @@ static int handle_mcast(struct vnet_port *port, void *msgbuf)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void maybe_tx_wakeup(struct vnet *vp)
|
static void maybe_tx_wakeup(unsigned long param)
|
||||||
{
|
{
|
||||||
|
struct vnet *vp = (struct vnet *)param;
|
||||||
struct net_device *dev = vp->dev;
|
struct net_device *dev = vp->dev;
|
||||||
|
|
||||||
netif_tx_lock(dev);
|
netif_tx_lock(dev);
|
||||||
|
@ -586,8 +587,13 @@ static void vnet_event(void *arg, int event)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
spin_unlock(&vio->lock);
|
spin_unlock(&vio->lock);
|
||||||
|
/* Kick off a tasklet to wake the queue. We cannot call
|
||||||
|
* maybe_tx_wakeup directly here because we could deadlock on
|
||||||
|
* netif_tx_lock() with dev_watchdog()
|
||||||
|
*/
|
||||||
if (unlikely(tx_wakeup && err != -ECONNRESET))
|
if (unlikely(tx_wakeup && err != -ECONNRESET))
|
||||||
maybe_tx_wakeup(port->vp);
|
tasklet_schedule(&port->vp->vnet_tx_wakeup);
|
||||||
|
|
||||||
local_irq_restore(flags);
|
local_irq_restore(flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1070,6 +1076,7 @@ static struct vnet *vnet_new(const u64 *local_mac)
|
||||||
vp = netdev_priv(dev);
|
vp = netdev_priv(dev);
|
||||||
|
|
||||||
spin_lock_init(&vp->lock);
|
spin_lock_init(&vp->lock);
|
||||||
|
tasklet_init(&vp->vnet_tx_wakeup, maybe_tx_wakeup, (unsigned long)vp);
|
||||||
vp->dev = dev;
|
vp->dev = dev;
|
||||||
|
|
||||||
INIT_LIST_HEAD(&vp->port_list);
|
INIT_LIST_HEAD(&vp->port_list);
|
||||||
|
@ -1129,6 +1136,7 @@ static void vnet_cleanup(void)
|
||||||
vp = list_first_entry(&vnet_list, struct vnet, list);
|
vp = list_first_entry(&vnet_list, struct vnet, list);
|
||||||
list_del(&vp->list);
|
list_del(&vp->list);
|
||||||
dev = vp->dev;
|
dev = vp->dev;
|
||||||
|
tasklet_kill(&vp->vnet_tx_wakeup);
|
||||||
/* vio_unregister_driver() should have cleaned up port_list */
|
/* vio_unregister_driver() should have cleaned up port_list */
|
||||||
BUG_ON(!list_empty(&vp->port_list));
|
BUG_ON(!list_empty(&vp->port_list));
|
||||||
unregister_netdev(dev);
|
unregister_netdev(dev);
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef _SUNVNET_H
|
#ifndef _SUNVNET_H
|
||||||
#define _SUNVNET_H
|
#define _SUNVNET_H
|
||||||
|
|
||||||
|
#include <linux/interrupt.h>
|
||||||
|
|
||||||
#define DESC_NCOOKIES(entry_size) \
|
#define DESC_NCOOKIES(entry_size) \
|
||||||
((entry_size) - sizeof(struct vio_net_desc))
|
((entry_size) - sizeof(struct vio_net_desc))
|
||||||
|
|
||||||
|
@ -78,6 +80,8 @@ struct vnet {
|
||||||
|
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
u64 local_mac;
|
u64 local_mac;
|
||||||
|
|
||||||
|
struct tasklet_struct vnet_tx_wakeup;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* _SUNVNET_H */
|
#endif /* _SUNVNET_H */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче