summaryrefslogtreecommitdiffstats
path: root/MAINTAINERS
diff options
context:
space:
mode:
authorDaniel P. Berrange2015-02-27 17:19:33 +0100
committerDaniel P. Berrange2015-12-18 13:18:05 +0100
commit666a3af9c858c22d254e545de3ffc3fb197a3187 (patch)
tree8af3c9f273760b5181ce5bfe308915f6580d928c /MAINTAINERS
parentMerge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (diff)
downloadqemu-666a3af9c858c22d254e545de3ffc3fb197a3187.tar.gz
qemu-666a3af9c858c22d254e545de3ffc3fb197a3187.tar.xz
qemu-666a3af9c858c22d254e545de3ffc3fb197a3187.zip
io: add abstract QIOChannel classes
Start the new generic I/O channel framework by defining a QIOChannel abstract base class. This is designed to feel similar to GLib's GIOChannel, but with the addition of support for using iovecs, qemu error reporting, file descriptor passing, coroutine integration and use of the QOM framework for easier sub-classing. The intention is that anywhere in QEMU that almost anywhere that deals with sockets will use this new I/O infrastructure, so that it becomes trivial to then layer in support for TLS encryption. This will at least include the VNC server, char device backend and migration code. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'MAINTAINERS')
-rw-r--r--MAINTAINERS7
1 files changed, 7 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index e8cee1e266..55a0fd8ae5 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1243,6 +1243,13 @@ S: Odd fixes
F: util/buffer.c
F: include/qemu/buffer.h
+I/O Channels
+M: Daniel P. Berrange <berrange@redhat.com>
+S: Maintained
+F: io/
+F: include/io/
+F: tests/test-io-*
+
Usermode Emulation
------------------
Overall