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-common.h"
18 #include "qemu/queue.h"
19 #include "qemu/thread.h"
20 #include "qemu/osdep.h"
21 #include "block/coroutine.h"
23 #include "block/block_int.h"
24 #include "qemu/event_notifier.h"
25 #include "block/thread-pool.h"
27 static void do_spawn_thread(ThreadPool
*pool
);
29 typedef struct ThreadPoolElement ThreadPoolElement
;
38 struct ThreadPoolElement
{
39 BlockDriverAIOCB common
;
44 /* Moving state out of THREAD_QUEUED is protected by lock. After
45 * that, only the worker thread can write to it. Reads and writes
46 * of state and ret are ordered with memory barriers.
48 enum ThreadState state
;
51 /* Access to this list is protected by lock. */
52 QTAILQ_ENTRY(ThreadPoolElement
) reqs
;
54 /* Access to this list is protected by the global mutex. */
55 QLIST_ENTRY(ThreadPoolElement
) all
;
59 EventNotifier notifier
;
62 QemuCond check_cancel
;
63 QemuCond worker_stopped
;
66 QEMUBH
*new_thread_bh
;
68 /* The following variables are only accessed from one AioContext. */
69 QLIST_HEAD(, ThreadPoolElement
) head
;
71 /* The following variables are protected by lock. */
72 QTAILQ_HEAD(, ThreadPoolElement
) request_list
;
75 int new_threads
; /* backlog of threads we need to create */
76 int pending_threads
; /* threads created but not running yet */
77 int pending_cancellations
; /* whether we need a cond_broadcast */
81 static void *worker_thread(void *opaque
)
83 ThreadPool
*pool
= opaque
;
85 qemu_mutex_lock(&pool
->lock
);
86 pool
->pending_threads
--;
87 do_spawn_thread(pool
);
89 while (!pool
->stopping
) {
90 ThreadPoolElement
*req
;
95 qemu_mutex_unlock(&pool
->lock
);
96 ret
= qemu_sem_timedwait(&pool
->sem
, 10000);
97 qemu_mutex_lock(&pool
->lock
);
99 } while (ret
== -1 && !QTAILQ_EMPTY(&pool
->request_list
));
100 if (ret
== -1 || pool
->stopping
) {
104 req
= QTAILQ_FIRST(&pool
->request_list
);
105 QTAILQ_REMOVE(&pool
->request_list
, req
, reqs
);
106 req
->state
= THREAD_ACTIVE
;
107 qemu_mutex_unlock(&pool
->lock
);
109 ret
= req
->func(req
->arg
);
112 /* Write ret before state. */
114 req
->state
= THREAD_DONE
;
116 qemu_mutex_lock(&pool
->lock
);
117 if (pool
->pending_cancellations
) {
118 qemu_cond_broadcast(&pool
->check_cancel
);
121 event_notifier_set(&pool
->notifier
);
125 qemu_cond_signal(&pool
->worker_stopped
);
126 qemu_mutex_unlock(&pool
->lock
);
130 static void do_spawn_thread(ThreadPool
*pool
)
134 /* Runs with lock taken. */
135 if (!pool
->new_threads
) {
140 pool
->pending_threads
++;
142 qemu_thread_create(&t
, worker_thread
, pool
, QEMU_THREAD_DETACHED
);
145 static void spawn_thread_bh_fn(void *opaque
)
147 ThreadPool
*pool
= opaque
;
149 qemu_mutex_lock(&pool
->lock
);
150 do_spawn_thread(pool
);
151 qemu_mutex_unlock(&pool
->lock
);
154 static void spawn_thread(ThreadPool
*pool
)
158 /* If there are threads being created, they will spawn new workers, so
159 * we don't spend time creating many threads in a loop holding a mutex or
160 * starving the current vcpu.
162 * If there are no idle threads, ask the main thread to create one, so we
163 * inherit the correct affinity instead of the vcpu affinity.
165 if (!pool
->pending_threads
) {
166 qemu_bh_schedule(pool
->new_thread_bh
);
170 static void event_notifier_ready(EventNotifier
*notifier
)
172 ThreadPool
*pool
= container_of(notifier
, ThreadPool
, notifier
);
173 ThreadPoolElement
*elem
, *next
;
175 event_notifier_test_and_clear(notifier
);
177 QLIST_FOREACH_SAFE(elem
, &pool
->head
, all
, next
) {
178 if (elem
->state
!= THREAD_CANCELED
&& elem
->state
!= THREAD_DONE
) {
181 if (elem
->state
== THREAD_DONE
) {
182 trace_thread_pool_complete(pool
, elem
, elem
->common
.opaque
,
185 if (elem
->state
== THREAD_DONE
&& elem
->common
.cb
) {
186 QLIST_REMOVE(elem
, all
);
187 /* Read state before ret. */
189 elem
->common
.cb(elem
->common
.opaque
, elem
->ret
);
190 qemu_aio_release(elem
);
193 /* remove the request */
194 QLIST_REMOVE(elem
, all
);
195 qemu_aio_release(elem
);
200 static void thread_pool_cancel(BlockDriverAIOCB
*acb
)
202 ThreadPoolElement
*elem
= (ThreadPoolElement
*)acb
;
203 ThreadPool
*pool
= elem
->pool
;
205 trace_thread_pool_cancel(elem
, elem
->common
.opaque
);
207 qemu_mutex_lock(&pool
->lock
);
208 if (elem
->state
== THREAD_QUEUED
&&
209 /* No thread has yet started working on elem. we can try to "steal"
210 * the item from the worker if we can get a signal from the
211 * semaphore. Because this is non-blocking, we can do it with
212 * the lock taken and ensure that elem will remain THREAD_QUEUED.
214 qemu_sem_timedwait(&pool
->sem
, 0) == 0) {
215 QTAILQ_REMOVE(&pool
->request_list
, elem
, reqs
);
216 elem
->state
= THREAD_CANCELED
;
217 event_notifier_set(&pool
->notifier
);
219 pool
->pending_cancellations
++;
220 while (elem
->state
!= THREAD_CANCELED
&& elem
->state
!= THREAD_DONE
) {
221 qemu_cond_wait(&pool
->check_cancel
, &pool
->lock
);
223 pool
->pending_cancellations
--;
225 qemu_mutex_unlock(&pool
->lock
);
228 static const AIOCBInfo thread_pool_aiocb_info
= {
229 .aiocb_size
= sizeof(ThreadPoolElement
),
230 .cancel
= thread_pool_cancel
,
233 BlockDriverAIOCB
*thread_pool_submit_aio(ThreadPool
*pool
,
234 ThreadPoolFunc
*func
, void *arg
,
235 BlockDriverCompletionFunc
*cb
, void *opaque
)
237 ThreadPoolElement
*req
;
239 req
= qemu_aio_get(&thread_pool_aiocb_info
, NULL
, cb
, opaque
);
242 req
->state
= THREAD_QUEUED
;
245 QLIST_INSERT_HEAD(&pool
->head
, req
, all
);
247 trace_thread_pool_submit(pool
, req
, arg
);
249 qemu_mutex_lock(&pool
->lock
);
250 if (pool
->idle_threads
== 0 && pool
->cur_threads
< pool
->max_threads
) {
253 QTAILQ_INSERT_TAIL(&pool
->request_list
, req
, reqs
);
254 qemu_mutex_unlock(&pool
->lock
);
255 qemu_sem_post(&pool
->sem
);
259 typedef struct ThreadPoolCo
{
264 static void thread_pool_co_cb(void *opaque
, int ret
)
266 ThreadPoolCo
*co
= opaque
;
269 qemu_coroutine_enter(co
->co
, NULL
);
272 int coroutine_fn
thread_pool_submit_co(ThreadPool
*pool
, ThreadPoolFunc
*func
,
275 ThreadPoolCo tpc
= { .co
= qemu_coroutine_self(), .ret
= -EINPROGRESS
};
276 assert(qemu_in_coroutine());
277 thread_pool_submit_aio(pool
, func
, arg
, thread_pool_co_cb
, &tpc
);
278 qemu_coroutine_yield();
282 void thread_pool_submit(ThreadPool
*pool
, ThreadPoolFunc
*func
, void *arg
)
284 thread_pool_submit_aio(pool
, func
, arg
, NULL
, NULL
);
287 static void thread_pool_init_one(ThreadPool
*pool
, AioContext
*ctx
)
290 ctx
= qemu_get_aio_context();
293 memset(pool
, 0, sizeof(*pool
));
294 event_notifier_init(&pool
->notifier
, false);
296 qemu_mutex_init(&pool
->lock
);
297 qemu_cond_init(&pool
->check_cancel
);
298 qemu_cond_init(&pool
->worker_stopped
);
299 qemu_sem_init(&pool
->sem
, 0);
300 pool
->max_threads
= 64;
301 pool
->new_thread_bh
= aio_bh_new(ctx
, spawn_thread_bh_fn
, pool
);
303 QLIST_INIT(&pool
->head
);
304 QTAILQ_INIT(&pool
->request_list
);
306 aio_set_event_notifier(ctx
, &pool
->notifier
, event_notifier_ready
);
309 ThreadPool
*thread_pool_new(AioContext
*ctx
)
311 ThreadPool
*pool
= g_new(ThreadPool
, 1);
312 thread_pool_init_one(pool
, ctx
);
316 void thread_pool_free(ThreadPool
*pool
)
322 assert(QLIST_EMPTY(&pool
->head
));
324 qemu_mutex_lock(&pool
->lock
);
326 /* Stop new threads from spawning */
327 qemu_bh_delete(pool
->new_thread_bh
);
328 pool
->cur_threads
-= pool
->new_threads
;
329 pool
->new_threads
= 0;
331 /* Wait for worker threads to terminate */
332 pool
->stopping
= true;
333 while (pool
->cur_threads
> 0) {
334 qemu_sem_post(&pool
->sem
);
335 qemu_cond_wait(&pool
->worker_stopped
, &pool
->lock
);
338 qemu_mutex_unlock(&pool
->lock
);
340 aio_set_event_notifier(pool
->ctx
, &pool
->notifier
, NULL
);
341 qemu_sem_destroy(&pool
->sem
);
342 qemu_cond_destroy(&pool
->check_cancel
);
343 qemu_cond_destroy(&pool
->worker_stopped
);
344 qemu_mutex_destroy(&pool
->lock
);
345 event_notifier_cleanup(&pool
->notifier
);