2 * QEMU block layer thread pool
4 * Copyright IBM, Corp. 2008
5 * Copyright Red Hat, Inc. 2012
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Paolo Bonzini <pbonzini@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
17 #include "qemu/osdep.h"
18 #include "qemu-common.h"
19 #include "qemu/queue.h"
20 #include "qemu/thread.h"
21 #include "qemu/coroutine.h"
23 #include "block/thread-pool.h"
24 #include "qemu/main-loop.h"
26 static void do_spawn_thread(ThreadPool
*pool
);
28 typedef struct ThreadPoolElement ThreadPoolElement
;
36 struct ThreadPoolElement
{
42 /* Moving state out of THREAD_QUEUED is protected by lock. After
43 * that, only the worker thread can write to it. Reads and writes
44 * of state and ret are ordered with memory barriers.
46 enum ThreadState state
;
49 /* Access to this list is protected by lock. */
50 QTAILQ_ENTRY(ThreadPoolElement
) reqs
;
52 /* Access to this list is protected by the global mutex. */
53 QLIST_ENTRY(ThreadPoolElement
) all
;
58 QEMUBH
*completion_bh
;
60 QemuCond worker_stopped
;
63 QEMUBH
*new_thread_bh
;
65 /* The following variables are only accessed from one AioContext. */
66 QLIST_HEAD(, ThreadPoolElement
) head
;
68 /* The following variables are protected by lock. */
69 QTAILQ_HEAD(, ThreadPoolElement
) request_list
;
72 int new_threads
; /* backlog of threads we need to create */
73 int pending_threads
; /* threads created but not running yet */
77 static void *worker_thread(void *opaque
)
79 ThreadPool
*pool
= opaque
;
81 qemu_mutex_lock(&pool
->lock
);
82 pool
->pending_threads
--;
83 do_spawn_thread(pool
);
85 while (!pool
->stopping
) {
86 ThreadPoolElement
*req
;
91 qemu_mutex_unlock(&pool
->lock
);
92 ret
= qemu_sem_timedwait(&pool
->sem
, 10000);
93 qemu_mutex_lock(&pool
->lock
);
95 } while (ret
== -1 && !QTAILQ_EMPTY(&pool
->request_list
));
96 if (ret
== -1 || pool
->stopping
) {
100 req
= QTAILQ_FIRST(&pool
->request_list
);
101 QTAILQ_REMOVE(&pool
->request_list
, req
, reqs
);
102 req
->state
= THREAD_ACTIVE
;
103 qemu_mutex_unlock(&pool
->lock
);
105 ret
= req
->func(req
->arg
);
108 /* Write ret before state. */
110 req
->state
= THREAD_DONE
;
112 qemu_mutex_lock(&pool
->lock
);
114 qemu_bh_schedule(pool
->completion_bh
);
118 qemu_cond_signal(&pool
->worker_stopped
);
119 qemu_mutex_unlock(&pool
->lock
);
123 static void do_spawn_thread(ThreadPool
*pool
)
127 /* Runs with lock taken. */
128 if (!pool
->new_threads
) {
133 pool
->pending_threads
++;
135 qemu_thread_create(&t
, "worker", worker_thread
, pool
, QEMU_THREAD_DETACHED
);
138 static void spawn_thread_bh_fn(void *opaque
)
140 ThreadPool
*pool
= opaque
;
142 qemu_mutex_lock(&pool
->lock
);
143 do_spawn_thread(pool
);
144 qemu_mutex_unlock(&pool
->lock
);
147 static void spawn_thread(ThreadPool
*pool
)
151 /* If there are threads being created, they will spawn new workers, so
152 * we don't spend time creating many threads in a loop holding a mutex or
153 * starving the current vcpu.
155 * If there are no idle threads, ask the main thread to create one, so we
156 * inherit the correct affinity instead of the vcpu affinity.
158 if (!pool
->pending_threads
) {
159 qemu_bh_schedule(pool
->new_thread_bh
);
163 static void thread_pool_completion_bh(void *opaque
)
165 ThreadPool
*pool
= opaque
;
166 ThreadPoolElement
*elem
, *next
;
168 aio_context_acquire(pool
->ctx
);
170 QLIST_FOREACH_SAFE(elem
, &pool
->head
, all
, next
) {
171 if (elem
->state
!= THREAD_DONE
) {
175 trace_thread_pool_complete(pool
, elem
, elem
->common
.opaque
,
177 QLIST_REMOVE(elem
, all
);
179 if (elem
->common
.cb
) {
180 /* Read state before ret. */
183 /* Schedule ourselves in case elem->common.cb() calls aio_poll() to
184 * wait for another request that completed at the same time.
186 qemu_bh_schedule(pool
->completion_bh
);
188 aio_context_release(pool
->ctx
);
189 elem
->common
.cb(elem
->common
.opaque
, elem
->ret
);
190 aio_context_acquire(pool
->ctx
);
192 /* We can safely cancel the completion_bh here regardless of someone
193 * else having scheduled it meanwhile because we reenter the
194 * completion function anyway (goto restart).
196 qemu_bh_cancel(pool
->completion_bh
);
198 qemu_aio_unref(elem
);
201 qemu_aio_unref(elem
);
204 aio_context_release(pool
->ctx
);
207 static void thread_pool_cancel(BlockAIOCB
*acb
)
209 ThreadPoolElement
*elem
= (ThreadPoolElement
*)acb
;
210 ThreadPool
*pool
= elem
->pool
;
212 trace_thread_pool_cancel(elem
, elem
->common
.opaque
);
214 qemu_mutex_lock(&pool
->lock
);
215 if (elem
->state
== THREAD_QUEUED
&&
216 /* No thread has yet started working on elem. we can try to "steal"
217 * the item from the worker if we can get a signal from the
218 * semaphore. Because this is non-blocking, we can do it with
219 * the lock taken and ensure that elem will remain THREAD_QUEUED.
221 qemu_sem_timedwait(&pool
->sem
, 0) == 0) {
222 QTAILQ_REMOVE(&pool
->request_list
, elem
, reqs
);
223 qemu_bh_schedule(pool
->completion_bh
);
225 elem
->state
= THREAD_DONE
;
226 elem
->ret
= -ECANCELED
;
229 qemu_mutex_unlock(&pool
->lock
);
232 static AioContext
*thread_pool_get_aio_context(BlockAIOCB
*acb
)
234 ThreadPoolElement
*elem
= (ThreadPoolElement
*)acb
;
235 ThreadPool
*pool
= elem
->pool
;
239 static const AIOCBInfo thread_pool_aiocb_info
= {
240 .aiocb_size
= sizeof(ThreadPoolElement
),
241 .cancel_async
= thread_pool_cancel
,
242 .get_aio_context
= thread_pool_get_aio_context
,
245 BlockAIOCB
*thread_pool_submit_aio(ThreadPool
*pool
,
246 ThreadPoolFunc
*func
, void *arg
,
247 BlockCompletionFunc
*cb
, void *opaque
)
249 ThreadPoolElement
*req
;
251 req
= qemu_aio_get(&thread_pool_aiocb_info
, NULL
, cb
, opaque
);
254 req
->state
= THREAD_QUEUED
;
257 QLIST_INSERT_HEAD(&pool
->head
, req
, all
);
259 trace_thread_pool_submit(pool
, req
, arg
);
261 qemu_mutex_lock(&pool
->lock
);
262 if (pool
->idle_threads
== 0 && pool
->cur_threads
< pool
->max_threads
) {
265 QTAILQ_INSERT_TAIL(&pool
->request_list
, req
, reqs
);
266 qemu_mutex_unlock(&pool
->lock
);
267 qemu_sem_post(&pool
->sem
);
271 typedef struct ThreadPoolCo
{
276 static void thread_pool_co_cb(void *opaque
, int ret
)
278 ThreadPoolCo
*co
= opaque
;
284 int coroutine_fn
thread_pool_submit_co(ThreadPool
*pool
, ThreadPoolFunc
*func
,
287 ThreadPoolCo tpc
= { .co
= qemu_coroutine_self(), .ret
= -EINPROGRESS
};
288 assert(qemu_in_coroutine());
289 thread_pool_submit_aio(pool
, func
, arg
, thread_pool_co_cb
, &tpc
);
290 qemu_coroutine_yield();
294 void thread_pool_submit(ThreadPool
*pool
, ThreadPoolFunc
*func
, void *arg
)
296 thread_pool_submit_aio(pool
, func
, arg
, NULL
, NULL
);
299 static void thread_pool_init_one(ThreadPool
*pool
, AioContext
*ctx
)
302 ctx
= qemu_get_aio_context();
305 memset(pool
, 0, sizeof(*pool
));
307 pool
->completion_bh
= aio_bh_new(ctx
, thread_pool_completion_bh
, pool
);
308 qemu_mutex_init(&pool
->lock
);
309 qemu_cond_init(&pool
->worker_stopped
);
310 qemu_sem_init(&pool
->sem
, 0);
311 pool
->max_threads
= 64;
312 pool
->new_thread_bh
= aio_bh_new(ctx
, spawn_thread_bh_fn
, pool
);
314 QLIST_INIT(&pool
->head
);
315 QTAILQ_INIT(&pool
->request_list
);
318 ThreadPool
*thread_pool_new(AioContext
*ctx
)
320 ThreadPool
*pool
= g_new(ThreadPool
, 1);
321 thread_pool_init_one(pool
, ctx
);
325 void thread_pool_free(ThreadPool
*pool
)
331 assert(QLIST_EMPTY(&pool
->head
));
333 qemu_mutex_lock(&pool
->lock
);
335 /* Stop new threads from spawning */
336 qemu_bh_delete(pool
->new_thread_bh
);
337 pool
->cur_threads
-= pool
->new_threads
;
338 pool
->new_threads
= 0;
340 /* Wait for worker threads to terminate */
341 pool
->stopping
= true;
342 while (pool
->cur_threads
> 0) {
343 qemu_sem_post(&pool
->sem
);
344 qemu_cond_wait(&pool
->worker_stopped
, &pool
->lock
);
347 qemu_mutex_unlock(&pool
->lock
);
349 qemu_bh_delete(pool
->completion_bh
);
350 qemu_sem_destroy(&pool
->sem
);
351 qemu_cond_destroy(&pool
->worker_stopped
);
352 qemu_mutex_destroy(&pool
->lock
);