4 * Copyright Red Hat Inc., 2013
7 * Stefan Hajnoczi <stefanha@redhat.com>
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.
14 #include "qemu/osdep.h"
15 #include "qom/object.h"
16 #include "qom/object_interfaces.h"
17 #include "qemu/module.h"
18 #include "block/aio.h"
19 #include "block/block.h"
20 #include "sysemu/iothread.h"
21 #include "qmp-commands.h"
22 #include "qemu/error-report.h"
24 #include "qemu/main-loop.h"
26 typedef ObjectClass IOThreadClass
;
28 #define IOTHREAD_GET_CLASS(obj) \
29 OBJECT_GET_CLASS(IOThreadClass, obj, TYPE_IOTHREAD)
30 #define IOTHREAD_CLASS(klass) \
31 OBJECT_CLASS_CHECK(IOThreadClass, klass, TYPE_IOTHREAD)
33 /* Benchmark results from 2016 on NVMe SSD drives show max polling times around
34 * 16-32 microseconds yield IOPS improvements for both iodepth=1 and iodepth=32
37 #define IOTHREAD_POLL_MAX_NS_DEFAULT 32768ULL
39 static __thread IOThread
*my_iothread
;
41 AioContext
*qemu_get_current_aio_context(void)
43 return my_iothread
? my_iothread
->ctx
: qemu_get_aio_context();
46 static void *iothread_run(void *opaque
)
48 IOThread
*iothread
= opaque
;
50 rcu_register_thread();
52 my_iothread
= iothread
;
53 qemu_mutex_lock(&iothread
->init_done_lock
);
54 iothread
->thread_id
= qemu_get_thread_id();
55 qemu_cond_signal(&iothread
->init_done_cond
);
56 qemu_mutex_unlock(&iothread
->init_done_lock
);
58 while (!atomic_read(&iothread
->stopping
)) {
59 aio_poll(iothread
->ctx
, true);
62 rcu_unregister_thread();
66 static int iothread_stop(Object
*object
, void *opaque
)
70 iothread
= (IOThread
*)object_dynamic_cast(object
, TYPE_IOTHREAD
);
71 if (!iothread
|| !iothread
->ctx
) {
74 iothread
->stopping
= true;
75 aio_notify(iothread
->ctx
);
76 qemu_thread_join(&iothread
->thread
);
80 static void iothread_instance_init(Object
*obj
)
82 IOThread
*iothread
= IOTHREAD(obj
);
84 iothread
->poll_max_ns
= IOTHREAD_POLL_MAX_NS_DEFAULT
;
87 static void iothread_instance_finalize(Object
*obj
)
89 IOThread
*iothread
= IOTHREAD(obj
);
91 iothread_stop(obj
, NULL
);
92 qemu_cond_destroy(&iothread
->init_done_cond
);
93 qemu_mutex_destroy(&iothread
->init_done_lock
);
97 aio_context_unref(iothread
->ctx
);
100 static void iothread_complete(UserCreatable
*obj
, Error
**errp
)
102 Error
*local_error
= NULL
;
103 IOThread
*iothread
= IOTHREAD(obj
);
104 char *name
, *thread_name
;
106 iothread
->stopping
= false;
107 iothread
->thread_id
= -1;
108 iothread
->ctx
= aio_context_new(&local_error
);
109 if (!iothread
->ctx
) {
110 error_propagate(errp
, local_error
);
114 aio_context_set_poll_params(iothread
->ctx
,
115 iothread
->poll_max_ns
,
117 iothread
->poll_shrink
,
120 error_propagate(errp
, local_error
);
121 aio_context_unref(iothread
->ctx
);
122 iothread
->ctx
= NULL
;
126 qemu_mutex_init(&iothread
->init_done_lock
);
127 qemu_cond_init(&iothread
->init_done_cond
);
129 /* This assumes we are called from a thread with useful CPU affinity for us
132 name
= object_get_canonical_path_component(OBJECT(obj
));
133 thread_name
= g_strdup_printf("IO %s", name
);
134 qemu_thread_create(&iothread
->thread
, thread_name
, iothread_run
,
135 iothread
, QEMU_THREAD_JOINABLE
);
139 /* Wait for initialization to complete */
140 qemu_mutex_lock(&iothread
->init_done_lock
);
141 while (iothread
->thread_id
== -1) {
142 qemu_cond_wait(&iothread
->init_done_cond
,
143 &iothread
->init_done_lock
);
145 qemu_mutex_unlock(&iothread
->init_done_lock
);
150 ptrdiff_t offset
; /* field's byte offset in IOThread struct */
153 static PollParamInfo poll_max_ns_info
= {
154 "poll-max-ns", offsetof(IOThread
, poll_max_ns
),
156 static PollParamInfo poll_grow_info
= {
157 "poll-grow", offsetof(IOThread
, poll_grow
),
159 static PollParamInfo poll_shrink_info
= {
160 "poll-shrink", offsetof(IOThread
, poll_shrink
),
163 static void iothread_get_poll_param(Object
*obj
, Visitor
*v
,
164 const char *name
, void *opaque
, Error
**errp
)
166 IOThread
*iothread
= IOTHREAD(obj
);
167 PollParamInfo
*info
= opaque
;
168 int64_t *field
= (void *)iothread
+ info
->offset
;
170 visit_type_int64(v
, name
, field
, errp
);
173 static void iothread_set_poll_param(Object
*obj
, Visitor
*v
,
174 const char *name
, void *opaque
, Error
**errp
)
176 IOThread
*iothread
= IOTHREAD(obj
);
177 PollParamInfo
*info
= opaque
;
178 int64_t *field
= (void *)iothread
+ info
->offset
;
179 Error
*local_err
= NULL
;
182 visit_type_int64(v
, name
, &value
, &local_err
);
188 error_setg(&local_err
, "%s value must be in range [0, %"PRId64
"]",
189 info
->name
, INT64_MAX
);
196 aio_context_set_poll_params(iothread
->ctx
,
197 iothread
->poll_max_ns
,
199 iothread
->poll_shrink
,
204 error_propagate(errp
, local_err
);
207 static void iothread_class_init(ObjectClass
*klass
, void *class_data
)
209 UserCreatableClass
*ucc
= USER_CREATABLE_CLASS(klass
);
210 ucc
->complete
= iothread_complete
;
212 object_class_property_add(klass
, "poll-max-ns", "int",
213 iothread_get_poll_param
,
214 iothread_set_poll_param
,
215 NULL
, &poll_max_ns_info
, &error_abort
);
216 object_class_property_add(klass
, "poll-grow", "int",
217 iothread_get_poll_param
,
218 iothread_set_poll_param
,
219 NULL
, &poll_grow_info
, &error_abort
);
220 object_class_property_add(klass
, "poll-shrink", "int",
221 iothread_get_poll_param
,
222 iothread_set_poll_param
,
223 NULL
, &poll_shrink_info
, &error_abort
);
226 static const TypeInfo iothread_info
= {
227 .name
= TYPE_IOTHREAD
,
228 .parent
= TYPE_OBJECT
,
229 .class_init
= iothread_class_init
,
230 .instance_size
= sizeof(IOThread
),
231 .instance_init
= iothread_instance_init
,
232 .instance_finalize
= iothread_instance_finalize
,
233 .interfaces
= (InterfaceInfo
[]) {
234 {TYPE_USER_CREATABLE
},
239 static void iothread_register_types(void)
241 type_register_static(&iothread_info
);
244 type_init(iothread_register_types
)
246 char *iothread_get_id(IOThread
*iothread
)
248 return object_get_canonical_path_component(OBJECT(iothread
));
251 AioContext
*iothread_get_aio_context(IOThread
*iothread
)
253 return iothread
->ctx
;
256 static int query_one_iothread(Object
*object
, void *opaque
)
258 IOThreadInfoList
***prev
= opaque
;
259 IOThreadInfoList
*elem
;
263 iothread
= (IOThread
*)object_dynamic_cast(object
, TYPE_IOTHREAD
);
268 info
= g_new0(IOThreadInfo
, 1);
269 info
->id
= iothread_get_id(iothread
);
270 info
->thread_id
= iothread
->thread_id
;
271 info
->poll_max_ns
= iothread
->poll_max_ns
;
272 info
->poll_grow
= iothread
->poll_grow
;
273 info
->poll_shrink
= iothread
->poll_shrink
;
275 elem
= g_new0(IOThreadInfoList
, 1);
284 IOThreadInfoList
*qmp_query_iothreads(Error
**errp
)
286 IOThreadInfoList
*head
= NULL
;
287 IOThreadInfoList
**prev
= &head
;
288 Object
*container
= object_get_objects_root();
290 object_child_foreach(container
, query_one_iothread
, &prev
);
294 void iothread_stop_all(void)
296 Object
*container
= object_get_objects_root();
297 BlockDriverState
*bs
;
300 for (bs
= bdrv_first(&it
); bs
; bs
= bdrv_next(&it
)) {
301 AioContext
*ctx
= bdrv_get_aio_context(bs
);
302 if (ctx
== qemu_get_aio_context()) {
305 aio_context_acquire(ctx
);
306 bdrv_set_aio_context(bs
, qemu_get_aio_context());
307 aio_context_release(ctx
);
310 object_child_foreach(container
, iothread_stop
, NULL
);