linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend()
@ 2017-01-30 17:45 Boris Ostrovsky
  2017-01-30 18:07 ` Eric Dumazet
  2017-02-03  9:38 ` Juergen Gross
  0 siblings, 2 replies; 11+ messages in thread
From: Boris Ostrovsky @ 2017-01-30 17:45 UTC (permalink / raw)
  To: jgross
  Cc: xen-devel, netdev, linux-kernel, vineethp, wei.liu2,
	paul.durrant, Boris Ostrovsky, stable

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: Boris Ostrovsky <boris.ostrovsky@oracle.com>
CC: stable@vger.kernel.org
---
 drivers/net/xen-netfront.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index 8315fe7..722fe9f 100644
--- a/drivers/net/xen-netfront.c
+++ b/drivers/net/xen-netfront.c
@@ -1379,6 +1379,8 @@ static void xennet_disconnect_backend(struct netfront_info *info)
 	for (i = 0; i < num_queues && info->queues; ++i) {
 		struct netfront_queue *queue = &info->queues[i];
 
+		del_timer_sync(&queue->rx_refill_timer);
+
 		if (queue->tx_irq && (queue->tx_irq == queue->rx_irq))
 			unbind_from_irqhandler(queue->tx_irq, queue);
 		if (queue->tx_irq && (queue->tx_irq != queue->rx_irq)) {
@@ -1733,7 +1735,6 @@ static void xennet_destroy_queues(struct netfront_info *info)
 
 		if (netif_running(info->netdev))
 			napi_disable(&queue->napi);
-		del_timer_sync(&queue->rx_refill_timer);
 		netif_napi_del(&queue->napi);
 	}
 
-- 
1.8.3.1

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

end of thread, other threads:[~2017-02-10 18:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-30 17:45 [PATCH] xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend() Boris Ostrovsky
2017-01-30 18:07 ` Eric Dumazet
2017-01-30 18:23   ` Boris Ostrovsky
2017-01-30 19:06     ` Eric Dumazet
2017-01-30 19:31       ` Boris Ostrovsky
2017-01-31 17:47         ` Boris Ostrovsky
2017-02-01 23:29           ` Boris Ostrovsky
2017-02-02  0:01             ` Eric Dumazet
2017-02-03  9:38 ` Juergen Gross
2017-02-09 13:42   ` Boris Ostrovsky
2017-02-10 18:46     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).