diff options
author | Mike Christie <michael.christie@oracle.com> | 2024-03-15 19:47:02 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2024-05-22 08:31:15 -0400 |
commit | d9e59eec4aa7b0c46cec56f4f9cf595ea209da7e (patch) | |
tree | 33d3004267d1f34dc904fd59249460197c50297a /drivers/vhost | |
parent | 59b701b99e2d01245b951325a8c3c12faa98d3ea (diff) | |
download | linux-d9e59eec4aa7b0c46cec56f4f9cf595ea209da7e.tar.gz linux-d9e59eec4aa7b0c46cec56f4f9cf595ea209da7e.tar.bz2 linux-d9e59eec4aa7b0c46cec56f4f9cf595ea209da7e.zip |
vhost: Remove vhost_vq_flush
vhost_vq_flush is no longer used so remove it.
Signed-off-by: Mike Christie <michael.christie@oracle.com>
Message-Id: <20240316004707.45557-5-michael.christie@oracle.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/vhost')
-rw-r--r-- | drivers/vhost/vhost.c | 12 | ||||
-rw-r--r-- | drivers/vhost/vhost.h | 1 |
2 files changed, 0 insertions, 13 deletions
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 8995730ce0bf..45aa83880b2d 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -263,18 +263,6 @@ bool vhost_vq_work_queue(struct vhost_virtqueue *vq, struct vhost_work *work) } EXPORT_SYMBOL_GPL(vhost_vq_work_queue); -void vhost_vq_flush(struct vhost_virtqueue *vq) -{ - struct vhost_flush_struct flush; - - init_completion(&flush.wait_event); - vhost_work_init(&flush.work, vhost_flush_work); - - if (vhost_vq_work_queue(vq, &flush.work)) - wait_for_completion(&flush.wait_event); -} -EXPORT_SYMBOL_GPL(vhost_vq_flush); - /** * vhost_worker_flush - flush a worker * @worker: worker to flush diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index 9e942fcda5c3..91ade037f08e 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -205,7 +205,6 @@ int vhost_get_vq_desc(struct vhost_virtqueue *, struct vhost_log *log, unsigned int *log_num); void vhost_discard_vq_desc(struct vhost_virtqueue *, int n); -void vhost_vq_flush(struct vhost_virtqueue *vq); bool vhost_vq_work_queue(struct vhost_virtqueue *vq, struct vhost_work *work); bool vhost_vq_has_work(struct vhost_virtqueue *vq); bool vhost_vq_is_setup(struct vhost_virtqueue *vq); |