From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: jgross@suse.com
Cc: wei.liu2@citrix.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org,
vineethp@amazon.com, xen-devel@lists.xenproject.org,
Boris Ostrovsky <boris.ostrovsky@oracle.com>,
paul.durrant@citrix.com
Subject: [PATCH] xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend()
Date: Mon, 30 Jan 2017 12:45:46 -0500 [thread overview]
Message-ID: <1485798346-4425-1-git-send-email-boris.ostrovsky@oracle.com> (raw)
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
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next reply other threads:[~2017-01-30 17:48 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-30 17:45 Boris Ostrovsky [this message]
2017-01-30 18:07 ` [PATCH] xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend() Eric Dumazet
[not found] ` <1485799651.6360.101.camel@edumazet-glaptop3.roam.corp.google.com>
2017-01-30 18:23 ` Boris Ostrovsky
[not found] ` <40057d9d-c615-1a2b-63a2-ab717c29d659@oracle.com>
2017-01-30 19:06 ` Eric Dumazet
[not found] ` <1485803209.6360.111.camel@edumazet-glaptop3.roam.corp.google.com>
2017-01-30 19:31 ` Boris Ostrovsky
2017-01-31 17:47 ` Boris Ostrovsky
2017-02-01 23:29 ` Boris Ostrovsky
[not found] ` <223ebf32-ba8b-a6be-2331-0644f9d347a0@oracle.com>
2017-02-02 0:01 ` Eric Dumazet
2017-02-03 9:38 ` Juergen Gross
[not found] ` <bc3bf927-568e-043a-2785-16e6c3628359@suse.com>
2017-02-09 13:42 ` Boris Ostrovsky
2017-02-10 18:46 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1485798346-4425-1-git-send-email-boris.ostrovsky@oracle.com \
--to=boris.ostrovsky@oracle.com \
--cc=jgross@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=paul.durrant@citrix.com \
--cc=stable@vger.kernel.org \
--cc=vineethp@amazon.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).