Skip to content

Commit

Permalink
virtio_net: fix virtnet_open and virtnet_probe competing for try_fill…
Browse files Browse the repository at this point in the history
…_recv

In function virtnet_open() and virtnet_probe(), func try_fill_recv() may
be executed at the same time. VQ in virtqueue_add() has not been protected
well and BUG_ON will be triggered when virito_net.ko being removed.

Signed-off-by: Yunjian Wang <[email protected]>
Acked-by: Jason Wang <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
wyjwang authored and davem330 committed May 31, 2016
1 parent bae5499 commit f00e35e
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions drivers/net/virtio_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -1925,24 +1925,11 @@ static int virtnet_probe(struct virtio_device *vdev)

virtio_device_ready(vdev);

/* Last of all, set up some receive buffers. */
for (i = 0; i < vi->curr_queue_pairs; i++) {
try_fill_recv(vi, &vi->rq[i], GFP_KERNEL);

/* If we didn't even get one input buffer, we're useless. */
if (vi->rq[i].vq->num_free ==
virtqueue_get_vring_size(vi->rq[i].vq)) {
free_unused_bufs(vi);
err = -ENOMEM;
goto free_recv_bufs;
}
}

vi->nb.notifier_call = &virtnet_cpu_callback;
err = register_hotcpu_notifier(&vi->nb);
if (err) {
pr_debug("virtio_net: registering cpu notifier failed\n");
goto free_recv_bufs;
goto free_unregister_netdev;
}

/* Assume link up if device can't report link status,
Expand All @@ -1960,10 +1947,9 @@ static int virtnet_probe(struct virtio_device *vdev)

return 0;

free_recv_bufs:
free_unregister_netdev:
vi->vdev->config->reset(vdev);

free_receive_bufs(vi);
unregister_netdev(dev);
free_vqs:
cancel_delayed_work_sync(&vi->refill);
Expand Down

0 comments on commit f00e35e

Please sign in to comment.