The vballoon thread could have exited earlier and not re-started. Ensure we don't try to stop a non-existent thread. This can happen if the balloon driver goes into S4 state and the thread exits (this code lands in the next patch). If, however, on restore, the vqs fail to initialise, the vballoon thread will not be re-created. Upon a subsequent module removal in that state, we will end up dereferencing an invalid pointer without this patch. --- drivers/virtio/virtio_balloon.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index 94fd738..22f7c69 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c @@ -338,7 +338,9 @@ static void __devexit virtballoon_remove(struct virtio_device *vdev) { struct virtio_balloon *vb = vdev->priv; - kthread_stop(vb->thread); + /* Thread may not have started on restore after a suspend */ + if (vb->thread) + kthread_stop(vb->thread); /* There might be pages left in the balloon: free them. */ while (vb->num_pages) -- 1.7.7.3 _______________________________________________ Virtualization mailing list Virtualization@xxxxxxxxxxxxxxxxxxxxxxxxxx https://lists.linuxfoundation.org/mailman/listinfo/virtualization