Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Event loop thread |
| 3 | * |
| 4 | * Copyright Red Hat Inc., 2013 |
| 5 | * |
| 6 | * Authors: |
| 7 | * Stefan Hajnoczi <stefanha@redhat.com> |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 10 | * See the COPYING file in the top-level directory. |
| 11 | * |
| 12 | */ |
| 13 | |
Peter Maydell | d38ea87 | 2016-01-29 17:50:05 +0000 | [diff] [blame] | 14 | #include "qemu/osdep.h" |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 15 | #include "qom/object.h" |
| 16 | #include "qom/object_interfaces.h" |
| 17 | #include "qemu/module.h" |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 18 | #include "block/aio.h" |
Paolo Bonzini | d16341f | 2016-10-27 12:49:00 +0200 | [diff] [blame] | 19 | #include "block/block.h" |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 20 | #include "sysemu/iothread.h" |
Stefan Hajnoczi | dc3dd0d | 2014-02-27 11:48:42 +0100 | [diff] [blame] | 21 | #include "qmp-commands.h" |
Markus Armbruster | e688df6 | 2018-02-01 12:18:31 +0100 | [diff] [blame^] | 22 | #include "qapi/error.h" |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 23 | #include "qemu/error-report.h" |
Paolo Bonzini | ab28bd2 | 2015-07-09 08:55:38 +0200 | [diff] [blame] | 24 | #include "qemu/rcu.h" |
Paolo Bonzini | e437016 | 2016-10-27 12:48:59 +0200 | [diff] [blame] | 25 | #include "qemu/main-loop.h" |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 26 | |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 27 | typedef ObjectClass IOThreadClass; |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 28 | |
| 29 | #define IOTHREAD_GET_CLASS(obj) \ |
| 30 | OBJECT_GET_CLASS(IOThreadClass, obj, TYPE_IOTHREAD) |
| 31 | #define IOTHREAD_CLASS(klass) \ |
| 32 | OBJECT_CLASS_CHECK(IOThreadClass, klass, TYPE_IOTHREAD) |
| 33 | |
Stefan Hajnoczi | cdd7abf | 2017-01-26 17:01:19 +0000 | [diff] [blame] | 34 | /* Benchmark results from 2016 on NVMe SSD drives show max polling times around |
| 35 | * 16-32 microseconds yield IOPS improvements for both iodepth=1 and iodepth=32 |
| 36 | * workloads. |
| 37 | */ |
| 38 | #define IOTHREAD_POLL_MAX_NS_DEFAULT 32768ULL |
| 39 | |
Paolo Bonzini | e437016 | 2016-10-27 12:48:59 +0200 | [diff] [blame] | 40 | static __thread IOThread *my_iothread; |
| 41 | |
| 42 | AioContext *qemu_get_current_aio_context(void) |
| 43 | { |
| 44 | return my_iothread ? my_iothread->ctx : qemu_get_aio_context(); |
| 45 | } |
| 46 | |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 47 | static void *iothread_run(void *opaque) |
| 48 | { |
| 49 | IOThread *iothread = opaque; |
| 50 | |
Paolo Bonzini | ab28bd2 | 2015-07-09 08:55:38 +0200 | [diff] [blame] | 51 | rcu_register_thread(); |
| 52 | |
Paolo Bonzini | e437016 | 2016-10-27 12:48:59 +0200 | [diff] [blame] | 53 | my_iothread = iothread; |
Stefan Hajnoczi | 88eb7c2 | 2014-02-27 11:48:41 +0100 | [diff] [blame] | 54 | qemu_mutex_lock(&iothread->init_done_lock); |
| 55 | iothread->thread_id = qemu_get_thread_id(); |
| 56 | qemu_cond_signal(&iothread->init_done_cond); |
| 57 | qemu_mutex_unlock(&iothread->init_done_lock); |
| 58 | |
Stefan Hajnoczi | 2362a28 | 2017-12-07 20:13:19 +0000 | [diff] [blame] | 59 | while (iothread->running) { |
Paolo Bonzini | 65c1b5b | 2016-10-27 12:49:06 +0200 | [diff] [blame] | 60 | aio_poll(iothread->ctx, true); |
Wang Yong | 329163c | 2017-08-29 15:22:37 +0800 | [diff] [blame] | 61 | |
| 62 | if (atomic_read(&iothread->worker_context)) { |
| 63 | GMainLoop *loop; |
| 64 | |
| 65 | g_main_context_push_thread_default(iothread->worker_context); |
| 66 | iothread->main_loop = |
| 67 | g_main_loop_new(iothread->worker_context, TRUE); |
| 68 | loop = iothread->main_loop; |
| 69 | |
| 70 | g_main_loop_run(iothread->main_loop); |
| 71 | iothread->main_loop = NULL; |
| 72 | g_main_loop_unref(loop); |
| 73 | |
| 74 | g_main_context_pop_thread_default(iothread->worker_context); |
Wang Yong | 329163c | 2017-08-29 15:22:37 +0800 | [diff] [blame] | 75 | } |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 76 | } |
Paolo Bonzini | ab28bd2 | 2015-07-09 08:55:38 +0200 | [diff] [blame] | 77 | |
| 78 | rcu_unregister_thread(); |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 79 | return NULL; |
| 80 | } |
| 81 | |
Stefan Hajnoczi | 2362a28 | 2017-12-07 20:13:19 +0000 | [diff] [blame] | 82 | /* Runs in iothread_run() thread */ |
| 83 | static void iothread_stop_bh(void *opaque) |
| 84 | { |
| 85 | IOThread *iothread = opaque; |
| 86 | |
| 87 | iothread->running = false; /* stop iothread_run() */ |
| 88 | |
| 89 | if (iothread->main_loop) { |
| 90 | g_main_loop_quit(iothread->main_loop); |
| 91 | } |
| 92 | } |
| 93 | |
Peter Xu | 82d9070 | 2017-09-28 10:59:56 +0800 | [diff] [blame] | 94 | void iothread_stop(IOThread *iothread) |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 95 | { |
Peter Xu | 82d9070 | 2017-09-28 10:59:56 +0800 | [diff] [blame] | 96 | if (!iothread->ctx || iothread->stopping) { |
| 97 | return; |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 98 | } |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 99 | iothread->stopping = true; |
Stefan Hajnoczi | 2362a28 | 2017-12-07 20:13:19 +0000 | [diff] [blame] | 100 | aio_bh_schedule_oneshot(iothread->ctx, iothread_stop_bh, iothread); |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 101 | qemu_thread_join(&iothread->thread); |
Peter Xu | 82d9070 | 2017-09-28 10:59:56 +0800 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static int iothread_stop_iter(Object *object, void *opaque) |
| 105 | { |
| 106 | IOThread *iothread; |
| 107 | |
| 108 | iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD); |
| 109 | if (!iothread) { |
| 110 | return 0; |
| 111 | } |
| 112 | iothread_stop(iothread); |
Fam Zheng | dce8921 | 2016-09-08 17:28:51 +0800 | [diff] [blame] | 113 | return 0; |
| 114 | } |
| 115 | |
Stefan Hajnoczi | cdd7abf | 2017-01-26 17:01:19 +0000 | [diff] [blame] | 116 | static void iothread_instance_init(Object *obj) |
| 117 | { |
| 118 | IOThread *iothread = IOTHREAD(obj); |
| 119 | |
| 120 | iothread->poll_max_ns = IOTHREAD_POLL_MAX_NS_DEFAULT; |
| 121 | } |
| 122 | |
Fam Zheng | dce8921 | 2016-09-08 17:28:51 +0800 | [diff] [blame] | 123 | static void iothread_instance_finalize(Object *obj) |
| 124 | { |
| 125 | IOThread *iothread = IOTHREAD(obj); |
| 126 | |
Peter Xu | 82d9070 | 2017-09-28 10:59:56 +0800 | [diff] [blame] | 127 | iothread_stop(iothread); |
Peter Xu | 5b3ac23 | 2017-09-28 10:59:57 +0800 | [diff] [blame] | 128 | if (iothread->worker_context) { |
| 129 | g_main_context_unref(iothread->worker_context); |
| 130 | iothread->worker_context = NULL; |
| 131 | } |
Stefan Hajnoczi | 88eb7c2 | 2014-02-27 11:48:41 +0100 | [diff] [blame] | 132 | qemu_cond_destroy(&iothread->init_done_cond); |
| 133 | qemu_mutex_destroy(&iothread->init_done_lock); |
Lin Ma | eb7b5c3 | 2016-09-26 13:29:58 +0800 | [diff] [blame] | 134 | if (!iothread->ctx) { |
| 135 | return; |
| 136 | } |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 137 | aio_context_unref(iothread->ctx); |
| 138 | } |
| 139 | |
| 140 | static void iothread_complete(UserCreatable *obj, Error **errp) |
| 141 | { |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 142 | Error *local_error = NULL; |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 143 | IOThread *iothread = IOTHREAD(obj); |
Paolo Bonzini | d21e877 | 2015-11-24 14:46:44 +0100 | [diff] [blame] | 144 | char *name, *thread_name; |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 145 | |
| 146 | iothread->stopping = false; |
Stefan Hajnoczi | 2362a28 | 2017-12-07 20:13:19 +0000 | [diff] [blame] | 147 | iothread->running = true; |
Stefan Hajnoczi | 88eb7c2 | 2014-02-27 11:48:41 +0100 | [diff] [blame] | 148 | iothread->thread_id = -1; |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 149 | iothread->ctx = aio_context_new(&local_error); |
| 150 | if (!iothread->ctx) { |
| 151 | error_propagate(errp, local_error); |
| 152 | return; |
| 153 | } |
Stefan Hajnoczi | 88eb7c2 | 2014-02-27 11:48:41 +0100 | [diff] [blame] | 154 | |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 155 | aio_context_set_poll_params(iothread->ctx, |
| 156 | iothread->poll_max_ns, |
| 157 | iothread->poll_grow, |
| 158 | iothread->poll_shrink, |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 159 | &local_error); |
| 160 | if (local_error) { |
| 161 | error_propagate(errp, local_error); |
| 162 | aio_context_unref(iothread->ctx); |
| 163 | iothread->ctx = NULL; |
| 164 | return; |
| 165 | } |
| 166 | |
Stefan Hajnoczi | 88eb7c2 | 2014-02-27 11:48:41 +0100 | [diff] [blame] | 167 | qemu_mutex_init(&iothread->init_done_lock); |
| 168 | qemu_cond_init(&iothread->init_done_cond); |
Wang Yong | 329163c | 2017-08-29 15:22:37 +0800 | [diff] [blame] | 169 | iothread->once = (GOnce) G_ONCE_INIT; |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 170 | |
| 171 | /* This assumes we are called from a thread with useful CPU affinity for us |
| 172 | * to inherit. |
| 173 | */ |
Paolo Bonzini | d21e877 | 2015-11-24 14:46:44 +0100 | [diff] [blame] | 174 | name = object_get_canonical_path_component(OBJECT(obj)); |
| 175 | thread_name = g_strdup_printf("IO %s", name); |
| 176 | qemu_thread_create(&iothread->thread, thread_name, iothread_run, |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 177 | iothread, QEMU_THREAD_JOINABLE); |
Paolo Bonzini | d21e877 | 2015-11-24 14:46:44 +0100 | [diff] [blame] | 178 | g_free(thread_name); |
| 179 | g_free(name); |
Stefan Hajnoczi | 88eb7c2 | 2014-02-27 11:48:41 +0100 | [diff] [blame] | 180 | |
| 181 | /* Wait for initialization to complete */ |
| 182 | qemu_mutex_lock(&iothread->init_done_lock); |
| 183 | while (iothread->thread_id == -1) { |
| 184 | qemu_cond_wait(&iothread->init_done_cond, |
| 185 | &iothread->init_done_lock); |
| 186 | } |
| 187 | qemu_mutex_unlock(&iothread->init_done_lock); |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 188 | } |
| 189 | |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 190 | typedef struct { |
| 191 | const char *name; |
| 192 | ptrdiff_t offset; /* field's byte offset in IOThread struct */ |
| 193 | } PollParamInfo; |
| 194 | |
| 195 | static PollParamInfo poll_max_ns_info = { |
| 196 | "poll-max-ns", offsetof(IOThread, poll_max_ns), |
| 197 | }; |
| 198 | static PollParamInfo poll_grow_info = { |
| 199 | "poll-grow", offsetof(IOThread, poll_grow), |
| 200 | }; |
| 201 | static PollParamInfo poll_shrink_info = { |
| 202 | "poll-shrink", offsetof(IOThread, poll_shrink), |
| 203 | }; |
| 204 | |
| 205 | static void iothread_get_poll_param(Object *obj, Visitor *v, |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 206 | const char *name, void *opaque, Error **errp) |
| 207 | { |
| 208 | IOThread *iothread = IOTHREAD(obj); |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 209 | PollParamInfo *info = opaque; |
| 210 | int64_t *field = (void *)iothread + info->offset; |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 211 | |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 212 | visit_type_int64(v, name, field, errp); |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 215 | static void iothread_set_poll_param(Object *obj, Visitor *v, |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 216 | const char *name, void *opaque, Error **errp) |
| 217 | { |
| 218 | IOThread *iothread = IOTHREAD(obj); |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 219 | PollParamInfo *info = opaque; |
| 220 | int64_t *field = (void *)iothread + info->offset; |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 221 | Error *local_err = NULL; |
| 222 | int64_t value; |
| 223 | |
| 224 | visit_type_int64(v, name, &value, &local_err); |
| 225 | if (local_err) { |
| 226 | goto out; |
| 227 | } |
| 228 | |
| 229 | if (value < 0) { |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 230 | error_setg(&local_err, "%s value must be in range [0, %"PRId64"]", |
| 231 | info->name, INT64_MAX); |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 232 | goto out; |
| 233 | } |
| 234 | |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 235 | *field = value; |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 236 | |
| 237 | if (iothread->ctx) { |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 238 | aio_context_set_poll_params(iothread->ctx, |
| 239 | iothread->poll_max_ns, |
| 240 | iothread->poll_grow, |
| 241 | iothread->poll_shrink, |
| 242 | &local_err); |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | out: |
| 246 | error_propagate(errp, local_err); |
| 247 | } |
| 248 | |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 249 | static void iothread_class_init(ObjectClass *klass, void *class_data) |
| 250 | { |
| 251 | UserCreatableClass *ucc = USER_CREATABLE_CLASS(klass); |
| 252 | ucc->complete = iothread_complete; |
Stefan Hajnoczi | 0d9d86f | 2016-12-01 19:26:45 +0000 | [diff] [blame] | 253 | |
| 254 | object_class_property_add(klass, "poll-max-ns", "int", |
Stefan Hajnoczi | 5e5db49 | 2016-12-01 19:26:52 +0000 | [diff] [blame] | 255 | iothread_get_poll_param, |
| 256 | iothread_set_poll_param, |
| 257 | NULL, &poll_max_ns_info, &error_abort); |
| 258 | object_class_property_add(klass, "poll-grow", "int", |
| 259 | iothread_get_poll_param, |
| 260 | iothread_set_poll_param, |
| 261 | NULL, &poll_grow_info, &error_abort); |
| 262 | object_class_property_add(klass, "poll-shrink", "int", |
| 263 | iothread_get_poll_param, |
| 264 | iothread_set_poll_param, |
| 265 | NULL, &poll_shrink_info, &error_abort); |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | static const TypeInfo iothread_info = { |
| 269 | .name = TYPE_IOTHREAD, |
| 270 | .parent = TYPE_OBJECT, |
| 271 | .class_init = iothread_class_init, |
| 272 | .instance_size = sizeof(IOThread), |
Stefan Hajnoczi | cdd7abf | 2017-01-26 17:01:19 +0000 | [diff] [blame] | 273 | .instance_init = iothread_instance_init, |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 274 | .instance_finalize = iothread_instance_finalize, |
| 275 | .interfaces = (InterfaceInfo[]) { |
| 276 | {TYPE_USER_CREATABLE}, |
| 277 | {} |
| 278 | }, |
| 279 | }; |
| 280 | |
| 281 | static void iothread_register_types(void) |
| 282 | { |
| 283 | type_register_static(&iothread_info); |
| 284 | } |
| 285 | |
| 286 | type_init(iothread_register_types) |
| 287 | |
Stefan Hajnoczi | be8d853 | 2014-03-03 11:30:05 +0100 | [diff] [blame] | 288 | char *iothread_get_id(IOThread *iothread) |
| 289 | { |
| 290 | return object_get_canonical_path_component(OBJECT(iothread)); |
| 291 | } |
| 292 | |
| 293 | AioContext *iothread_get_aio_context(IOThread *iothread) |
| 294 | { |
| 295 | return iothread->ctx; |
| 296 | } |
Stefan Hajnoczi | dc3dd0d | 2014-02-27 11:48:42 +0100 | [diff] [blame] | 297 | |
| 298 | static int query_one_iothread(Object *object, void *opaque) |
| 299 | { |
| 300 | IOThreadInfoList ***prev = opaque; |
| 301 | IOThreadInfoList *elem; |
| 302 | IOThreadInfo *info; |
| 303 | IOThread *iothread; |
| 304 | |
| 305 | iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD); |
| 306 | if (!iothread) { |
| 307 | return 0; |
| 308 | } |
| 309 | |
| 310 | info = g_new0(IOThreadInfo, 1); |
| 311 | info->id = iothread_get_id(iothread); |
| 312 | info->thread_id = iothread->thread_id; |
Pavel Hrdina | 5fc0048 | 2017-02-10 10:41:17 +0100 | [diff] [blame] | 313 | info->poll_max_ns = iothread->poll_max_ns; |
| 314 | info->poll_grow = iothread->poll_grow; |
| 315 | info->poll_shrink = iothread->poll_shrink; |
Stefan Hajnoczi | dc3dd0d | 2014-02-27 11:48:42 +0100 | [diff] [blame] | 316 | |
| 317 | elem = g_new0(IOThreadInfoList, 1); |
| 318 | elem->value = info; |
| 319 | elem->next = NULL; |
| 320 | |
| 321 | **prev = elem; |
| 322 | *prev = &elem->next; |
| 323 | return 0; |
| 324 | } |
| 325 | |
| 326 | IOThreadInfoList *qmp_query_iothreads(Error **errp) |
| 327 | { |
| 328 | IOThreadInfoList *head = NULL; |
| 329 | IOThreadInfoList **prev = &head; |
Daniel P. Berrange | bc2256c | 2015-05-13 17:14:05 +0100 | [diff] [blame] | 330 | Object *container = object_get_objects_root(); |
Stefan Hajnoczi | dc3dd0d | 2014-02-27 11:48:42 +0100 | [diff] [blame] | 331 | |
| 332 | object_child_foreach(container, query_one_iothread, &prev); |
| 333 | return head; |
| 334 | } |
Fam Zheng | dce8921 | 2016-09-08 17:28:51 +0800 | [diff] [blame] | 335 | |
| 336 | void iothread_stop_all(void) |
| 337 | { |
| 338 | Object *container = object_get_objects_root(); |
Paolo Bonzini | d16341f | 2016-10-27 12:49:00 +0200 | [diff] [blame] | 339 | BlockDriverState *bs; |
| 340 | BdrvNextIterator it; |
| 341 | |
| 342 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
| 343 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 344 | if (ctx == qemu_get_aio_context()) { |
| 345 | continue; |
| 346 | } |
| 347 | aio_context_acquire(ctx); |
| 348 | bdrv_set_aio_context(bs, qemu_get_aio_context()); |
| 349 | aio_context_release(ctx); |
| 350 | } |
Fam Zheng | dce8921 | 2016-09-08 17:28:51 +0800 | [diff] [blame] | 351 | |
Peter Xu | 82d9070 | 2017-09-28 10:59:56 +0800 | [diff] [blame] | 352 | object_child_foreach(container, iothread_stop_iter, NULL); |
Fam Zheng | dce8921 | 2016-09-08 17:28:51 +0800 | [diff] [blame] | 353 | } |
Wang Yong | 329163c | 2017-08-29 15:22:37 +0800 | [diff] [blame] | 354 | |
| 355 | static gpointer iothread_g_main_context_init(gpointer opaque) |
| 356 | { |
| 357 | AioContext *ctx; |
| 358 | IOThread *iothread = opaque; |
| 359 | GSource *source; |
| 360 | |
| 361 | iothread->worker_context = g_main_context_new(); |
| 362 | |
| 363 | ctx = iothread_get_aio_context(iothread); |
| 364 | source = aio_get_g_source(ctx); |
| 365 | g_source_attach(source, iothread->worker_context); |
| 366 | g_source_unref(source); |
| 367 | |
| 368 | aio_notify(iothread->ctx); |
| 369 | return NULL; |
| 370 | } |
| 371 | |
| 372 | GMainContext *iothread_get_g_main_context(IOThread *iothread) |
| 373 | { |
| 374 | g_once(&iothread->once, iothread_g_main_context_init, iothread); |
| 375 | |
| 376 | return iothread->worker_context; |
| 377 | } |
Peter Xu | 0173e21 | 2017-09-28 10:59:55 +0800 | [diff] [blame] | 378 | |
| 379 | IOThread *iothread_create(const char *id, Error **errp) |
| 380 | { |
| 381 | Object *obj; |
| 382 | |
| 383 | obj = object_new_with_props(TYPE_IOTHREAD, |
| 384 | object_get_internal_root(), |
| 385 | id, errp, NULL); |
| 386 | |
| 387 | return IOTHREAD(obj); |
| 388 | } |
| 389 | |
| 390 | void iothread_destroy(IOThread *iothread) |
| 391 | { |
| 392 | object_unparent(OBJECT(iothread)); |
| 393 | } |
Stefan Hajnoczi | fbcc692 | 2017-12-06 14:45:48 +0000 | [diff] [blame] | 394 | |
| 395 | /* Lookup IOThread by its id. Only finds user-created objects, not internal |
| 396 | * iothread_create() objects. */ |
| 397 | IOThread *iothread_by_id(const char *id) |
| 398 | { |
| 399 | return IOTHREAD(object_resolve_path_type(id, TYPE_IOTHREAD, NULL)); |
| 400 | } |