]>
Commit | Line | Data |
---|---|---|
00dccaf1 KW |
1 | /* |
2 | * QEMU coroutines | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Stefan Hajnoczi <[email protected]> | |
8 | * Kevin Wolf <[email protected]> | |
9 | * | |
10 | * This work is licensed under the terms of the GNU LGPL, version 2 or later. | |
11 | * See the COPYING.LIB file in the top-level directory. | |
12 | * | |
13 | */ | |
14 | ||
aafd7584 | 15 | #include "qemu/osdep.h" |
00dccaf1 KW |
16 | #include "trace.h" |
17 | #include "qemu-common.h" | |
b84c4586 | 18 | #include "qemu/thread.h" |
4d68e86b | 19 | #include "qemu/atomic.h" |
10817bf0 DB |
20 | #include "qemu/coroutine.h" |
21 | #include "qemu/coroutine_int.h" | |
0c330a73 | 22 | #include "block/aio.h" |
00dccaf1 | 23 | |
40239784 | 24 | enum { |
4d68e86b | 25 | POOL_BATCH_SIZE = 64, |
40239784 PB |
26 | }; |
27 | ||
28 | /** Free list to speed up creation */ | |
4d68e86b PB |
29 | static QSLIST_HEAD(, Coroutine) release_pool = QSLIST_HEAD_INITIALIZER(pool); |
30 | static unsigned int release_pool_size; | |
31 | static __thread QSLIST_HEAD(, Coroutine) alloc_pool = QSLIST_HEAD_INITIALIZER(pool); | |
51a2219b | 32 | static __thread unsigned int alloc_pool_size; |
4d68e86b PB |
33 | static __thread Notifier coroutine_pool_cleanup_notifier; |
34 | ||
35 | static void coroutine_pool_cleanup(Notifier *n, void *value) | |
36 | { | |
37 | Coroutine *co; | |
38 | Coroutine *tmp; | |
39 | ||
40 | QSLIST_FOREACH_SAFE(co, &alloc_pool, pool_next, tmp) { | |
41 | QSLIST_REMOVE_HEAD(&alloc_pool, pool_next); | |
42 | qemu_coroutine_delete(co); | |
43 | } | |
44 | } | |
40239784 | 45 | |
0b8b8753 | 46 | Coroutine *qemu_coroutine_create(CoroutineEntry *entry, void *opaque) |
00dccaf1 | 47 | { |
70c60c08 | 48 | Coroutine *co = NULL; |
40239784 | 49 | |
70c60c08 | 50 | if (CONFIG_COROUTINE_POOL) { |
4d68e86b PB |
51 | co = QSLIST_FIRST(&alloc_pool); |
52 | if (!co) { | |
53 | if (release_pool_size > POOL_BATCH_SIZE) { | |
54 | /* Slow path; a good place to register the destructor, too. */ | |
55 | if (!coroutine_pool_cleanup_notifier.notify) { | |
56 | coroutine_pool_cleanup_notifier.notify = coroutine_pool_cleanup; | |
57 | qemu_thread_atexit_add(&coroutine_pool_cleanup_notifier); | |
58 | } | |
59 | ||
60 | /* This is not exact; there could be a little skew between | |
61 | * release_pool_size and the actual size of release_pool. But | |
62 | * it is just a heuristic, it does not need to be perfect. | |
63 | */ | |
51a2219b | 64 | alloc_pool_size = atomic_xchg(&release_pool_size, 0); |
4d68e86b PB |
65 | QSLIST_MOVE_ATOMIC(&alloc_pool, &release_pool); |
66 | co = QSLIST_FIRST(&alloc_pool); | |
67 | } | |
68 | } | |
70c60c08 | 69 | if (co) { |
4d68e86b | 70 | QSLIST_REMOVE_HEAD(&alloc_pool, pool_next); |
51a2219b | 71 | alloc_pool_size--; |
70c60c08 | 72 | } |
b84c4586 | 73 | } |
b84c4586 SH |
74 | |
75 | if (!co) { | |
40239784 PB |
76 | co = qemu_coroutine_new(); |
77 | } | |
78 | ||
00dccaf1 | 79 | co->entry = entry; |
0b8b8753 | 80 | co->entry_arg = opaque; |
7d9c8581 | 81 | QSIMPLEQ_INIT(&co->co_queue_wakeup); |
00dccaf1 KW |
82 | return co; |
83 | } | |
84 | ||
40239784 PB |
85 | static void coroutine_delete(Coroutine *co) |
86 | { | |
4d68e86b PB |
87 | co->caller = NULL; |
88 | ||
70c60c08 | 89 | if (CONFIG_COROUTINE_POOL) { |
4d68e86b PB |
90 | if (release_pool_size < POOL_BATCH_SIZE * 2) { |
91 | QSLIST_INSERT_HEAD_ATOMIC(&release_pool, co, pool_next); | |
92 | atomic_inc(&release_pool_size); | |
70c60c08 SH |
93 | return; |
94 | } | |
51a2219b PL |
95 | if (alloc_pool_size < POOL_BATCH_SIZE) { |
96 | QSLIST_INSERT_HEAD(&alloc_pool, co, pool_next); | |
97 | alloc_pool_size++; | |
98 | return; | |
99 | } | |
40239784 PB |
100 | } |
101 | ||
102 | qemu_coroutine_delete(co); | |
103 | } | |
104 | ||
ba9e75ce | 105 | void qemu_aio_coroutine_enter(AioContext *ctx, Coroutine *co) |
00dccaf1 KW |
106 | { |
107 | Coroutine *self = qemu_coroutine_self(); | |
cd12bb56 | 108 | CoroutineAction ret; |
00dccaf1 | 109 | |
ba9e75ce | 110 | trace_qemu_aio_coroutine_enter(ctx, self, co, co->entry_arg); |
00dccaf1 KW |
111 | |
112 | if (co->caller) { | |
113 | fprintf(stderr, "Co-routine re-entered recursively\n"); | |
114 | abort(); | |
115 | } | |
116 | ||
117 | co->caller = self; | |
ba9e75ce | 118 | co->ctx = ctx; |
0c330a73 PB |
119 | |
120 | /* Store co->ctx before anything that stores co. Matches | |
480cff63 | 121 | * barrier in aio_co_wake and qemu_co_mutex_wake. |
0c330a73 PB |
122 | */ |
123 | smp_wmb(); | |
124 | ||
cd12bb56 KW |
125 | ret = qemu_coroutine_switch(self, co, COROUTINE_ENTER); |
126 | ||
127 | qemu_co_queue_run_restart(co); | |
128 | ||
528f449f RP |
129 | /* Beware, if ret == COROUTINE_YIELD and qemu_co_queue_run_restart() |
130 | * has started any other coroutine, "co" might have been reentered | |
131 | * and even freed by now! So be careful and do not touch it. | |
132 | */ | |
133 | ||
cd12bb56 KW |
134 | switch (ret) { |
135 | case COROUTINE_YIELD: | |
136 | return; | |
137 | case COROUTINE_TERMINATE: | |
1b7f01d9 | 138 | assert(!co->locks_held); |
cd12bb56 KW |
139 | trace_qemu_coroutine_terminate(co); |
140 | coroutine_delete(co); | |
141 | return; | |
142 | default: | |
143 | abort(); | |
144 | } | |
00dccaf1 KW |
145 | } |
146 | ||
ba9e75ce FZ |
147 | void qemu_coroutine_enter(Coroutine *co) |
148 | { | |
149 | qemu_aio_coroutine_enter(qemu_get_current_aio_context(), co); | |
150 | } | |
151 | ||
536fca7f KW |
152 | void qemu_coroutine_enter_if_inactive(Coroutine *co) |
153 | { | |
154 | if (!qemu_coroutine_entered(co)) { | |
155 | qemu_coroutine_enter(co); | |
156 | } | |
157 | } | |
158 | ||
00dccaf1 KW |
159 | void coroutine_fn qemu_coroutine_yield(void) |
160 | { | |
161 | Coroutine *self = qemu_coroutine_self(); | |
162 | Coroutine *to = self->caller; | |
163 | ||
164 | trace_qemu_coroutine_yield(self, to); | |
165 | ||
166 | if (!to) { | |
167 | fprintf(stderr, "Co-routine is yielding to no one\n"); | |
168 | abort(); | |
169 | } | |
170 | ||
171 | self->caller = NULL; | |
315a1309 | 172 | qemu_coroutine_switch(self, to, COROUTINE_YIELD); |
00dccaf1 | 173 | } |
f643e469 SH |
174 | |
175 | bool qemu_coroutine_entered(Coroutine *co) | |
176 | { | |
177 | return co->caller; | |
178 | } |