diff options
author | Stefan Hajnoczi | 2014-03-03 11:30:05 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2014-03-13 14:42:24 +0100 |
commit | be8d8537668c9be7a8dee6aed94b2b3f9fcd4a9f (patch) | |
tree | dce7a5c063e02a2cee81426212b434ea5af65eaa /include/sysemu | |
parent | aio: add aio_context_acquire() and aio_context_release() (diff) | |
download | qemu-be8d8537668c9be7a8dee6aed94b2b3f9fcd4a9f.tar.gz qemu-be8d8537668c9be7a8dee6aed94b2b3f9fcd4a9f.tar.xz qemu-be8d8537668c9be7a8dee6aed94b2b3f9fcd4a9f.zip |
iothread: add I/O thread object
This is a stand-in for Michael Roth's QContext. I expect this to be
replaced once QContext is completed.
The IOThread object is an AioContext event loop thread. This patch adds
the concept of multiple event loop threads, allowing users to define
them.
When SMP guests run on SMP hosts it makes sense to instantiate multiple
IOThreads. This spreads event loop processing across multiple cores.
Note that additional patches are required to actually bind a device to
an IOThread.
[Andreas Färber <afaerber@suse.de> pointed out that the embedded parent
object instance should be called "parent_obj" and have a newline
afterwards. This patch has been changed to reflect this.
-- Stefan]
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/iothread.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/sysemu/iothread.h b/include/sysemu/iothread.h new file mode 100644 index 0000000000..a32214a647 --- /dev/null +++ b/include/sysemu/iothread.h @@ -0,0 +1,30 @@ +/* + * Event loop thread + * + * Copyright Red Hat Inc., 2013 + * + * Authors: + * Stefan Hajnoczi <stefanha@redhat.com> + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + * + */ + +#ifndef IOTHREAD_H +#define IOTHREAD_H + +#include "block/aio.h" + +#define TYPE_IOTHREAD "iothread" + +typedef struct IOThread IOThread; + +#define IOTHREAD(obj) \ + OBJECT_CHECK(IOThread, obj, TYPE_IOTHREAD) + +IOThread *iothread_find(const char *id); +char *iothread_get_id(IOThread *iothread); +AioContext *iothread_get_aio_context(IOThread *iothread); + +#endif /* IOTHREAD_H */ |