]> git.proxmox.com Git - qemu.git/blame - thread-pool.c
smc91c111: Fix receive starvation
[qemu.git] / thread-pool.c
CommitLineData
d354c7ec
PB
1/*
2 * QEMU block layer thread pool
3 *
4 * Copyright IBM, Corp. 2008
5 * Copyright Red Hat, Inc. 2012
6 *
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Paolo Bonzini <pbonzini@redhat.com>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 *
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.
16 */
17#include "qemu-common.h"
1de7afc9
PB
18#include "qemu/queue.h"
19#include "qemu/thread.h"
20#include "qemu/osdep.h"
737e150e 21#include "block/coroutine.h"
d354c7ec 22#include "trace.h"
737e150e 23#include "block/block_int.h"
1de7afc9 24#include "qemu/event_notifier.h"
737e150e 25#include "block/thread-pool.h"
6a1751b7 26#include "qemu/main-loop.h"
d354c7ec 27
b811203c 28static void do_spawn_thread(ThreadPool *pool);
d354c7ec
PB
29
30typedef struct ThreadPoolElement ThreadPoolElement;
31
32enum ThreadState {
33 THREAD_QUEUED,
34 THREAD_ACTIVE,
35 THREAD_DONE,
36 THREAD_CANCELED,
37};
38
39struct ThreadPoolElement {
40 BlockDriverAIOCB common;
b811203c 41 ThreadPool *pool;
d354c7ec
PB
42 ThreadPoolFunc *func;
43 void *arg;
19d092cf
PB
44
45 /* Moving state out of THREAD_QUEUED is protected by lock. After
46 * that, only the worker thread can write to it. Reads and writes
47 * of state and ret are ordered with memory barriers.
48 */
d354c7ec
PB
49 enum ThreadState state;
50 int ret;
51
52 /* Access to this list is protected by lock. */
53 QTAILQ_ENTRY(ThreadPoolElement) reqs;
54
55 /* Access to this list is protected by the global mutex. */
56 QLIST_ENTRY(ThreadPoolElement) all;
57};
58
b811203c
SH
59struct ThreadPool {
60 EventNotifier notifier;
f7311ccc 61 AioContext *ctx;
b811203c
SH
62 QemuMutex lock;
63 QemuCond check_cancel;
f7311ccc 64 QemuCond worker_stopped;
b811203c
SH
65 QemuSemaphore sem;
66 int max_threads;
67 QEMUBH *new_thread_bh;
68
69 /* The following variables are only accessed from one AioContext. */
70 QLIST_HEAD(, ThreadPoolElement) head;
71
72 /* The following variables are protected by lock. */
73 QTAILQ_HEAD(, ThreadPoolElement) request_list;
74 int cur_threads;
75 int idle_threads;
76 int new_threads; /* backlog of threads we need to create */
77 int pending_threads; /* threads created but not running yet */
78 int pending_cancellations; /* whether we need a cond_broadcast */
f7311ccc 79 bool stopping;
b811203c
SH
80};
81
b811203c 82static void *worker_thread(void *opaque)
d354c7ec 83{
b811203c
SH
84 ThreadPool *pool = opaque;
85
86 qemu_mutex_lock(&pool->lock);
87 pool->pending_threads--;
88 do_spawn_thread(pool);
d354c7ec 89
f7311ccc 90 while (!pool->stopping) {
d354c7ec
PB
91 ThreadPoolElement *req;
92 int ret;
93
94 do {
b811203c
SH
95 pool->idle_threads++;
96 qemu_mutex_unlock(&pool->lock);
97 ret = qemu_sem_timedwait(&pool->sem, 10000);
98 qemu_mutex_lock(&pool->lock);
99 pool->idle_threads--;
100 } while (ret == -1 && !QTAILQ_EMPTY(&pool->request_list));
f7311ccc 101 if (ret == -1 || pool->stopping) {
d354c7ec
PB
102 break;
103 }
104
b811203c
SH
105 req = QTAILQ_FIRST(&pool->request_list);
106 QTAILQ_REMOVE(&pool->request_list, req, reqs);
d354c7ec 107 req->state = THREAD_ACTIVE;
b811203c 108 qemu_mutex_unlock(&pool->lock);
d354c7ec
PB
109
110 ret = req->func(req->arg);
111
d354c7ec 112 req->ret = ret;
19d092cf
PB
113 /* Write ret before state. */
114 smp_wmb();
115 req->state = THREAD_DONE;
116
b811203c
SH
117 qemu_mutex_lock(&pool->lock);
118 if (pool->pending_cancellations) {
119 qemu_cond_broadcast(&pool->check_cancel);
d354c7ec
PB
120 }
121
b811203c 122 event_notifier_set(&pool->notifier);
d354c7ec
PB
123 }
124
b811203c 125 pool->cur_threads--;
f7311ccc 126 qemu_cond_signal(&pool->worker_stopped);
b811203c 127 qemu_mutex_unlock(&pool->lock);
d354c7ec
PB
128 return NULL;
129}
130
b811203c 131static void do_spawn_thread(ThreadPool *pool)
d354c7ec
PB
132{
133 QemuThread t;
134
135 /* Runs with lock taken. */
b811203c 136 if (!pool->new_threads) {
d354c7ec
PB
137 return;
138 }
139
b811203c
SH
140 pool->new_threads--;
141 pool->pending_threads++;
d354c7ec 142
b811203c 143 qemu_thread_create(&t, worker_thread, pool, QEMU_THREAD_DETACHED);
d354c7ec
PB
144}
145
146static void spawn_thread_bh_fn(void *opaque)
147{
b811203c
SH
148 ThreadPool *pool = opaque;
149
150 qemu_mutex_lock(&pool->lock);
151 do_spawn_thread(pool);
152 qemu_mutex_unlock(&pool->lock);
d354c7ec
PB
153}
154
b811203c 155static void spawn_thread(ThreadPool *pool)
d354c7ec 156{
b811203c
SH
157 pool->cur_threads++;
158 pool->new_threads++;
d354c7ec
PB
159 /* If there are threads being created, they will spawn new workers, so
160 * we don't spend time creating many threads in a loop holding a mutex or
161 * starving the current vcpu.
162 *
163 * If there are no idle threads, ask the main thread to create one, so we
164 * inherit the correct affinity instead of the vcpu affinity.
165 */
b811203c
SH
166 if (!pool->pending_threads) {
167 qemu_bh_schedule(pool->new_thread_bh);
d354c7ec
PB
168 }
169}
170
171static void event_notifier_ready(EventNotifier *notifier)
172{
b811203c 173 ThreadPool *pool = container_of(notifier, ThreadPool, notifier);
d354c7ec
PB
174 ThreadPoolElement *elem, *next;
175
176 event_notifier_test_and_clear(notifier);
177restart:
b811203c 178 QLIST_FOREACH_SAFE(elem, &pool->head, all, next) {
d354c7ec
PB
179 if (elem->state != THREAD_CANCELED && elem->state != THREAD_DONE) {
180 continue;
181 }
182 if (elem->state == THREAD_DONE) {
b811203c
SH
183 trace_thread_pool_complete(pool, elem, elem->common.opaque,
184 elem->ret);
d354c7ec
PB
185 }
186 if (elem->state == THREAD_DONE && elem->common.cb) {
d354c7ec 187 QLIST_REMOVE(elem, all);
19d092cf
PB
188 /* Read state before ret. */
189 smp_rmb();
190 elem->common.cb(elem->common.opaque, elem->ret);
d354c7ec
PB
191 qemu_aio_release(elem);
192 goto restart;
193 } else {
194 /* remove the request */
195 QLIST_REMOVE(elem, all);
196 qemu_aio_release(elem);
197 }
198 }
199}
200
d354c7ec
PB
201static void thread_pool_cancel(BlockDriverAIOCB *acb)
202{
203 ThreadPoolElement *elem = (ThreadPoolElement *)acb;
b811203c 204 ThreadPool *pool = elem->pool;
d354c7ec
PB
205
206 trace_thread_pool_cancel(elem, elem->common.opaque);
207
b811203c 208 qemu_mutex_lock(&pool->lock);
d354c7ec
PB
209 if (elem->state == THREAD_QUEUED &&
210 /* No thread has yet started working on elem. we can try to "steal"
211 * the item from the worker if we can get a signal from the
212 * semaphore. Because this is non-blocking, we can do it with
213 * the lock taken and ensure that elem will remain THREAD_QUEUED.
214 */
b811203c
SH
215 qemu_sem_timedwait(&pool->sem, 0) == 0) {
216 QTAILQ_REMOVE(&pool->request_list, elem, reqs);
d354c7ec 217 elem->state = THREAD_CANCELED;
b811203c 218 event_notifier_set(&pool->notifier);
d354c7ec 219 } else {
b811203c 220 pool->pending_cancellations++;
d354c7ec 221 while (elem->state != THREAD_CANCELED && elem->state != THREAD_DONE) {
b811203c 222 qemu_cond_wait(&pool->check_cancel, &pool->lock);
d354c7ec 223 }
b811203c 224 pool->pending_cancellations--;
d354c7ec 225 }
b811203c 226 qemu_mutex_unlock(&pool->lock);
d354c7ec
PB
227}
228
d7331bed 229static const AIOCBInfo thread_pool_aiocb_info = {
d354c7ec
PB
230 .aiocb_size = sizeof(ThreadPoolElement),
231 .cancel = thread_pool_cancel,
232};
233
c4d9d196
SH
234BlockDriverAIOCB *thread_pool_submit_aio(ThreadPool *pool,
235 ThreadPoolFunc *func, void *arg,
d354c7ec
PB
236 BlockDriverCompletionFunc *cb, void *opaque)
237{
238 ThreadPoolElement *req;
239
d7331bed 240 req = qemu_aio_get(&thread_pool_aiocb_info, NULL, cb, opaque);
d354c7ec
PB
241 req->func = func;
242 req->arg = arg;
243 req->state = THREAD_QUEUED;
b811203c 244 req->pool = pool;
d354c7ec 245
b811203c 246 QLIST_INSERT_HEAD(&pool->head, req, all);
d354c7ec 247
b811203c 248 trace_thread_pool_submit(pool, req, arg);
d354c7ec 249
b811203c
SH
250 qemu_mutex_lock(&pool->lock);
251 if (pool->idle_threads == 0 && pool->cur_threads < pool->max_threads) {
252 spawn_thread(pool);
d354c7ec 253 }
b811203c
SH
254 QTAILQ_INSERT_TAIL(&pool->request_list, req, reqs);
255 qemu_mutex_unlock(&pool->lock);
256 qemu_sem_post(&pool->sem);
d354c7ec
PB
257 return &req->common;
258}
259
260typedef struct ThreadPoolCo {
261 Coroutine *co;
262 int ret;
263} ThreadPoolCo;
264
265static void thread_pool_co_cb(void *opaque, int ret)
266{
267 ThreadPoolCo *co = opaque;
268
269 co->ret = ret;
270 qemu_coroutine_enter(co->co, NULL);
271}
272
c4d9d196
SH
273int coroutine_fn thread_pool_submit_co(ThreadPool *pool, ThreadPoolFunc *func,
274 void *arg)
d354c7ec
PB
275{
276 ThreadPoolCo tpc = { .co = qemu_coroutine_self(), .ret = -EINPROGRESS };
277 assert(qemu_in_coroutine());
c4d9d196 278 thread_pool_submit_aio(pool, func, arg, thread_pool_co_cb, &tpc);
d354c7ec
PB
279 qemu_coroutine_yield();
280 return tpc.ret;
281}
282
c4d9d196 283void thread_pool_submit(ThreadPool *pool, ThreadPoolFunc *func, void *arg)
d354c7ec 284{
c4d9d196 285 thread_pool_submit_aio(pool, func, arg, NULL, NULL);
d354c7ec
PB
286}
287
b811203c
SH
288static void thread_pool_init_one(ThreadPool *pool, AioContext *ctx)
289{
290 if (!ctx) {
291 ctx = qemu_get_aio_context();
292 }
293
294 memset(pool, 0, sizeof(*pool));
295 event_notifier_init(&pool->notifier, false);
f7311ccc 296 pool->ctx = ctx;
b811203c
SH
297 qemu_mutex_init(&pool->lock);
298 qemu_cond_init(&pool->check_cancel);
f7311ccc 299 qemu_cond_init(&pool->worker_stopped);
b811203c
SH
300 qemu_sem_init(&pool->sem, 0);
301 pool->max_threads = 64;
302 pool->new_thread_bh = aio_bh_new(ctx, spawn_thread_bh_fn, pool);
303
304 QLIST_INIT(&pool->head);
305 QTAILQ_INIT(&pool->request_list);
306
f2e5dca4 307 aio_set_event_notifier(ctx, &pool->notifier, event_notifier_ready);
b811203c
SH
308}
309
f7311ccc
SH
310ThreadPool *thread_pool_new(AioContext *ctx)
311{
312 ThreadPool *pool = g_new(ThreadPool, 1);
313 thread_pool_init_one(pool, ctx);
314 return pool;
315}
316
317void thread_pool_free(ThreadPool *pool)
318{
319 if (!pool) {
320 return;
321 }
322
323 assert(QLIST_EMPTY(&pool->head));
324
325 qemu_mutex_lock(&pool->lock);
326
327 /* Stop new threads from spawning */
328 qemu_bh_delete(pool->new_thread_bh);
329 pool->cur_threads -= pool->new_threads;
330 pool->new_threads = 0;
331
332 /* Wait for worker threads to terminate */
333 pool->stopping = true;
334 while (pool->cur_threads > 0) {
335 qemu_sem_post(&pool->sem);
336 qemu_cond_wait(&pool->worker_stopped, &pool->lock);
337 }
338
339 qemu_mutex_unlock(&pool->lock);
340
f2e5dca4 341 aio_set_event_notifier(pool->ctx, &pool->notifier, NULL);
f7311ccc
SH
342 qemu_sem_destroy(&pool->sem);
343 qemu_cond_destroy(&pool->check_cancel);
344 qemu_cond_destroy(&pool->worker_stopped);
345 qemu_mutex_destroy(&pool->lock);
346 event_notifier_cleanup(&pool->notifier);
347 g_free(pool);
348}