| 2545 | } |
| 2546 | |
| 2547 | static int is_vring_iotlb(struct virtio_net *dev, |
| 2548 | struct vhost_virtqueue *vq, |
| 2549 | struct vhost_iotlb_msg *imsg) |
| 2550 | { |
| 2551 | if (vq_is_packed(dev)) |
| 2552 | return is_vring_iotlb_packed(vq, imsg); |
| 2553 | else |
| 2554 | return is_vring_iotlb_split(vq, imsg); |
| 2555 | } |
| 2556 | |
| 2557 | static int |
| 2558 | vhost_user_get_config(struct virtio_net **pdev, |
no test coverage detected