xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend()
authorBoris Ostrovsky <boris.ostrovsky@oracle.com>
Mon, 30 Jan 2017 17:45:46 +0000 (12:45 -0500)
committerBen Hutchings <ben@decadent.org.uk>
Thu, 16 Mar 2017 02:18:49 +0000 (02:18 +0000)
commit8791971a999520f89df72f8d72b9c498346278be
treef9cbc3ed2928d082c3383a1a8a7f2d426a70a263
parent41cf7ba330bdd5f888268d26513ee707a1cb8e23
xen-netfront: Delete rx_refill_timer in xennet_disconnect_backend()

commit 74470954857c264168d2b5a113904cf0cfd27d18 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: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: David 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: Ben Hutchings <ben@decadent.org.uk>
drivers/net/xen-netfront.c