[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v7 15/18] dataplane/virtio-blk: drop flush_true() an
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH v7 15/18] dataplane/virtio-blk: drop flush_true() and flush_io() |
Date: |
Fri, 9 Aug 2013 10:22:44 +0200 |
.io_flush() is no longer called so drop flush_true() and flush_io().
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
hw/block/dataplane/virtio-blk.c | 17 ++---------------
1 file changed, 2 insertions(+), 15 deletions(-)
diff --git a/hw/block/dataplane/virtio-blk.c b/hw/block/dataplane/virtio-blk.c
index 5bd5eed..82131b1 100644
--- a/hw/block/dataplane/virtio-blk.c
+++ b/hw/block/dataplane/virtio-blk.c
@@ -261,11 +261,6 @@ static int process_request(IOQueue *ioq, struct iovec
iov[],
}
}
-static int flush_true(EventNotifier *e)
-{
- return true;
-}
-
static void handle_notify(EventNotifier *e)
{
VirtIOBlockDataPlane *s = container_of(e, VirtIOBlockDataPlane,
@@ -345,14 +340,6 @@ static void handle_notify(EventNotifier *e)
}
}
-static int flush_io(EventNotifier *e)
-{
- VirtIOBlockDataPlane *s = container_of(e, VirtIOBlockDataPlane,
- io_notifier);
-
- return s->num_reqs > 0;
-}
-
static void handle_io(EventNotifier *e)
{
VirtIOBlockDataPlane *s = container_of(e, VirtIOBlockDataPlane,
@@ -485,7 +472,7 @@ void virtio_blk_data_plane_start(VirtIOBlockDataPlane *s)
exit(1);
}
s->host_notifier = *virtio_queue_get_host_notifier(vq);
- aio_set_event_notifier(s->ctx, &s->host_notifier, handle_notify,
flush_true);
+ aio_set_event_notifier(s->ctx, &s->host_notifier, handle_notify, NULL);
/* Set up ioqueue */
ioq_init(&s->ioqueue, s->fd, REQ_MAX);
@@ -493,7 +480,7 @@ void virtio_blk_data_plane_start(VirtIOBlockDataPlane *s)
ioq_put_iocb(&s->ioqueue, &s->requests[i].iocb);
}
s->io_notifier = *ioq_get_notifier(&s->ioqueue);
- aio_set_event_notifier(s->ctx, &s->io_notifier, handle_io, flush_io);
+ aio_set_event_notifier(s->ctx, &s->io_notifier, handle_io, NULL);
s->started = true;
trace_virtio_blk_data_plane_start(s);
--
1.8.1.4
- [Qemu-devel] [PATCH v7 04/18] tests: adjust test-aio to new aio_poll() semantics, (continued)
- [Qemu-devel] [PATCH v7 04/18] tests: adjust test-aio to new aio_poll() semantics, Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 05/18] tests: adjust test-thread-pool to new aio_poll() semantics, Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 06/18] aio: stop using .io_flush(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 08/18] block/gluster: drop qemu_gluster_aio_flush_cb(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 07/18] block/curl: drop curl_aio_flush(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 09/18] block/iscsi: drop iscsi_process_flush(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 10/18] block/linux-aio: drop qemu_laio_completion_cb(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 12/18] block/rbd: drop qemu_rbd_aio_flush_cb(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 13/18] block/sheepdog: drop have_co_req() and aio_flush_request(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 14/18] block/ssh: drop return_true(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 15/18] dataplane/virtio-blk: drop flush_true() and flush_io(),
Stefan Hajnoczi <=
- [Qemu-devel] [PATCH v7 16/18] thread-pool: drop thread_pool_active(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 17/18] tests: drop event_active_cb(), Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 18/18] aio: drop io_flush argument, Stefan Hajnoczi, 2013/08/09
- [Qemu-devel] [PATCH v7 11/18] block/nbd: drop nbd_have_request(), Stefan Hajnoczi, 2013/08/09