megasas: add MegaRAID SAS 2108 emulation
[qemu/ar7.git] / iothread.c
blob342a23fcb02b67e199be6eac0064a189fb18aa88
1 /*
2 * Event loop thread
4 * Copyright Red Hat Inc., 2013
6 * Authors:
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 "qom/object.h"
15 #include "qom/object_interfaces.h"
16 #include "qemu/module.h"
17 #include "block/aio.h"
18 #include "sysemu/iothread.h"
19 #include "qmp-commands.h"
20 #include "qemu/error-report.h"
22 #define IOTHREADS_PATH "/objects"
24 typedef ObjectClass IOThreadClass;
26 #define IOTHREAD_GET_CLASS(obj) \
27 OBJECT_GET_CLASS(IOThreadClass, obj, TYPE_IOTHREAD)
28 #define IOTHREAD_CLASS(klass) \
29 OBJECT_CLASS_CHECK(IOThreadClass, klass, TYPE_IOTHREAD)
31 static void *iothread_run(void *opaque)
33 IOThread *iothread = opaque;
34 bool blocking;
36 qemu_mutex_lock(&iothread->init_done_lock);
37 iothread->thread_id = qemu_get_thread_id();
38 qemu_cond_signal(&iothread->init_done_cond);
39 qemu_mutex_unlock(&iothread->init_done_lock);
41 while (!iothread->stopping) {
42 aio_context_acquire(iothread->ctx);
43 blocking = true;
44 while (!iothread->stopping && aio_poll(iothread->ctx, blocking)) {
45 /* Progress was made, keep going */
46 blocking = false;
48 aio_context_release(iothread->ctx);
50 return NULL;
53 static void iothread_instance_finalize(Object *obj)
55 IOThread *iothread = IOTHREAD(obj);
57 if (!iothread->ctx) {
58 return;
60 iothread->stopping = true;
61 aio_notify(iothread->ctx);
62 qemu_thread_join(&iothread->thread);
63 qemu_cond_destroy(&iothread->init_done_cond);
64 qemu_mutex_destroy(&iothread->init_done_lock);
65 aio_context_unref(iothread->ctx);
68 static void iothread_complete(UserCreatable *obj, Error **errp)
70 Error *local_error = NULL;
71 IOThread *iothread = IOTHREAD(obj);
73 iothread->stopping = false;
74 iothread->thread_id = -1;
75 iothread->ctx = aio_context_new(&local_error);
76 if (!iothread->ctx) {
77 error_propagate(errp, local_error);
78 return;
81 qemu_mutex_init(&iothread->init_done_lock);
82 qemu_cond_init(&iothread->init_done_cond);
84 /* This assumes we are called from a thread with useful CPU affinity for us
85 * to inherit.
87 qemu_thread_create(&iothread->thread, "iothread", iothread_run,
88 iothread, QEMU_THREAD_JOINABLE);
90 /* Wait for initialization to complete */
91 qemu_mutex_lock(&iothread->init_done_lock);
92 while (iothread->thread_id == -1) {
93 qemu_cond_wait(&iothread->init_done_cond,
94 &iothread->init_done_lock);
96 qemu_mutex_unlock(&iothread->init_done_lock);
99 static void iothread_class_init(ObjectClass *klass, void *class_data)
101 UserCreatableClass *ucc = USER_CREATABLE_CLASS(klass);
102 ucc->complete = iothread_complete;
105 static const TypeInfo iothread_info = {
106 .name = TYPE_IOTHREAD,
107 .parent = TYPE_OBJECT,
108 .class_init = iothread_class_init,
109 .instance_size = sizeof(IOThread),
110 .instance_finalize = iothread_instance_finalize,
111 .interfaces = (InterfaceInfo[]) {
112 {TYPE_USER_CREATABLE},
117 static void iothread_register_types(void)
119 type_register_static(&iothread_info);
122 type_init(iothread_register_types)
124 IOThread *iothread_find(const char *id)
126 Object *container = container_get(object_get_root(), IOTHREADS_PATH);
127 Object *child;
129 child = object_property_get_link(container, id, NULL);
130 if (!child) {
131 return NULL;
133 return (IOThread *)object_dynamic_cast(child, TYPE_IOTHREAD);
136 char *iothread_get_id(IOThread *iothread)
138 return object_get_canonical_path_component(OBJECT(iothread));
141 AioContext *iothread_get_aio_context(IOThread *iothread)
143 return iothread->ctx;
146 static int query_one_iothread(Object *object, void *opaque)
148 IOThreadInfoList ***prev = opaque;
149 IOThreadInfoList *elem;
150 IOThreadInfo *info;
151 IOThread *iothread;
153 iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD);
154 if (!iothread) {
155 return 0;
158 info = g_new0(IOThreadInfo, 1);
159 info->id = iothread_get_id(iothread);
160 info->thread_id = iothread->thread_id;
162 elem = g_new0(IOThreadInfoList, 1);
163 elem->value = info;
164 elem->next = NULL;
166 **prev = elem;
167 *prev = &elem->next;
168 return 0;
171 IOThreadInfoList *qmp_query_iothreads(Error **errp)
173 IOThreadInfoList *head = NULL;
174 IOThreadInfoList **prev = &head;
175 Object *container = container_get(object_get_root(), IOTHREADS_PATH);
177 object_child_foreach(container, query_one_iothread, &prev);
178 return head;