[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v7 16/18] thread-pool: drop thread_pool_active()
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH v7 16/18] thread-pool: drop thread_pool_active() |
Date: |
Fri, 9 Aug 2013 10:22:45 +0200 |
.io_flush() is no longer called so drop thread_pool_active(). The block
layer is the only thread-pool.c user and it already tracks in-flight
requests, therefore we do not need thread_pool_active().
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
thread-pool.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/thread-pool.c b/thread-pool.c
index 0ebd4c2..096f007 100644
--- a/thread-pool.c
+++ b/thread-pool.c
@@ -197,12 +197,6 @@ restart:
}
}
-static int thread_pool_active(EventNotifier *notifier)
-{
- ThreadPool *pool = container_of(notifier, ThreadPool, notifier);
- return !QLIST_EMPTY(&pool->head);
-}
-
static void thread_pool_cancel(BlockDriverAIOCB *acb)
{
ThreadPoolElement *elem = (ThreadPoolElement *)acb;
@@ -310,7 +304,7 @@ static void thread_pool_init_one(ThreadPool *pool,
AioContext *ctx)
QTAILQ_INIT(&pool->request_list);
aio_set_event_notifier(ctx, &pool->notifier, event_notifier_ready,
- thread_pool_active);
+ NULL);
}
ThreadPool *thread_pool_new(AioContext *ctx)
--
1.8.1.4
- [Qemu-devel] [PATCH v7 05/18] tests: adjust test-thread-pool to new aio_poll() semantics, (continued)
- [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, 2013/08/09
- [Qemu-devel] [PATCH v7 16/18] thread-pool: drop thread_pool_active(),
Stefan Hajnoczi <=
- [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