Commit 8791971a authored by Boris Ostrovsky's avatar Boris Ostrovsky Committed by Ben Hutchings

xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend()

commit 74470954 upstream.

rx_refill_timer should be deleted as soon as we disconnect from the
backend since otherwise it is possible for the timer to go off before
we get to xennet_destroy_queues(). If this happens we may dereference
queue->rx.sring which is set to NULL in xennet_disconnect_backend().
Signed-off-by: default avatarBoris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: default avatarJuergen Gross <jgross@suse.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
[bwh: Backported to 3.2: there's only one RX queue here, and del_timer_sync()
 was called from xennet_remove() but that's also too late]
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 41cf7ba3
......@@ -1404,6 +1404,8 @@ static void xennet_disconnect_backend(struct netfront_info *info)
spin_unlock_irq(&info->tx_lock);
spin_unlock_bh(&info->rx_lock);
del_timer_sync(&info->rx_refill_timer);
if (info->netdev->irq)
unbind_from_irqhandler(info->netdev->irq, info->netdev);
info->evtchn = info->netdev->irq = 0;
......@@ -1940,8 +1942,6 @@ static int __devexit xennet_remove(struct xenbus_device *dev)
unregister_netdev(info->netdev);
del_timer_sync(&info->rx_refill_timer);
free_percpu(info->stats);
free_netdev(info->netdev);
......
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