| 618 | } |
| 619 | |
| 620 | static void |
| 621 | reset_vring_queue(struct virtio_net *dev, struct vhost_virtqueue *vq) |
| 622 | { |
| 623 | int callfd; |
| 624 | |
| 625 | callfd = vq->callfd; |
| 626 | init_vring_queue(dev, vq, vq->index); |
| 627 | vq->callfd = callfd; |
| 628 | } |
| 629 | |
| 630 | int |
| 631 | alloc_vring_queue(struct virtio_net *dev, uint32_t vring_idx) |
no test coverage detected