vhost: remove unused function

vhost_detach_vdpa_device() is internally defined but not used, remove
it in this patch.

Signed-off-by: Xiao Wang <xiao.w.wang@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
This commit is contained in:
Xiao Wang 2018-12-18 16:01:58 +08:00 committed by Ferruh Yigit
parent aea29aa5d3
commit 02e3b285d4
2 changed files with 0 additions and 14 deletions

View File

@ -400,19 +400,6 @@ vhost_attach_vdpa_device(int vid, int did)
dev->vdpa_dev_id = did;
}
void
vhost_detach_vdpa_device(int vid)
{
struct virtio_net *dev = get_device(vid);
if (dev == NULL)
return;
vhost_user_host_notifier_ctrl(vid, false);
dev->vdpa_dev_id = -1;
}
void
vhost_set_ifname(int vid, const char *if_name, unsigned int if_len)
{

View File

@ -629,7 +629,6 @@ void free_vq(struct virtio_net *dev, struct vhost_virtqueue *vq);
int alloc_vring_queue(struct virtio_net *dev, uint32_t vring_idx);
void vhost_attach_vdpa_device(int vid, int did);
void vhost_detach_vdpa_device(int vid);
void vhost_set_ifname(int, const char *if_name, unsigned int if_len);
void vhost_enable_dequeue_zero_copy(int vid);