The following changes since commit c14e42d7a4495ecbad7bf8b3d603272e3a8992a1:
Merge remote-tracking branch 'remotes/kraxel/tags/pull-usb-20151020-1' into staging (2015-10-20 10:52:56 +0100) are available in the git repository at: https://github.com/berrange/qemu.git io-channel-3-pull for you to fetch changes up to 88c5f205fa4c095db4c50eb7ad72816140206819: util: pull Buffer code out of VNC module (2015-10-20 14:59:09 +0100) ---------------------------------------------------------------- Daniel P. Berrange (7): sockets: add helpers for creating SocketAddress from a socket sockets: move qapi_copy_SocketAddress into qemu-sockets.c sockets: allow port to be NULL when listening on IP address ui: convert VNC startup code to use SocketAddress osdep: add qemu_fork() wrapper for safely handling signals coroutine: move into libqemuutil.a library util: pull Buffer code out of VNC module MAINTAINERS | 13 ++ Makefile.objs | 4 - block.c | 2 +- block/qcow2.h | 2 +- block/vdi.c | 2 +- block/write-threshold.c | 2 +- blockjob.c | 2 +- hw/9pfs/codir.c | 2 +- hw/9pfs/cofile.c | 2 +- hw/9pfs/cofs.c | 2 +- hw/9pfs/coxattr.c | 2 +- hw/9pfs/virtio-9p-coth.c | 2 +- hw/9pfs/virtio-9p-coth.h | 2 +- hw/9pfs/virtio-9p.h | 2 +- include/block/block.h | 2 +- include/block/block_int.h | 2 +- include/qemu/buffer.h | 118 ++++++++++++ include/{block => qemu}/coroutine.h | 0 include/{block => qemu}/coroutine_int.h | 2 +- include/qemu/osdep.h | 16 ++ include/qemu/sockets.h | 34 ++++ migration/qemu-file-buf.c | 2 +- migration/qemu-file-stdio.c | 2 +- migration/qemu-file-unix.c | 2 +- migration/qemu-file.c | 2 +- migration/rdma.c | 2 +- nbd.c | 2 +- qapi-schema.json | 6 +- qemu-char.c | 25 --- tests/test-coroutine.c | 4 +- tests/test-vmstate.c | 2 +- thread-pool.c | 2 +- ui/vnc.c | 203 +++++++++------------ ui/vnc.h | 16 +- util/Makefile.objs | 4 + util/buffer.c | 65 +++++++ coroutine-gthread.c => util/coroutine-gthread.c | 2 +- .../coroutine-sigaltstack.c | 2 +- coroutine-ucontext.c => util/coroutine-ucontext.c | 2 +- coroutine-win32.c => util/coroutine-win32.c | 2 +- util/oslib-posix.c | 71 +++++++ util/oslib-win32.c | 9 + qemu-coroutine-io.c => util/qemu-coroutine-io.c | 2 +- .../qemu-coroutine-lock.c | 4 +- .../qemu-coroutine-sleep.c | 2 +- qemu-coroutine.c => util/qemu-coroutine.c | 4 +- util/qemu-sockets.c | 158 +++++++++++++++- 47 files changed, 613 insertions(+), 199 deletions(-) create mode 100644 include/qemu/buffer.h rename include/{block => qemu}/coroutine.h (100%) rename include/{block => qemu}/coroutine_int.h (98%) create mode 100644 util/buffer.c rename coroutine-gthread.c => util/coroutine-gthread.c (99%) rename coroutine-sigaltstack.c => util/coroutine-sigaltstack.c (99%) rename coroutine-ucontext.c => util/coroutine-ucontext.c (99%) rename coroutine-win32.c => util/coroutine-win32.c (98%) rename qemu-coroutine-io.c => util/qemu-coroutine-io.c (99%) rename qemu-coroutine-lock.c => util/qemu-coroutine-lock.c (98%) rename qemu-coroutine-sleep.c => util/qemu-coroutine-sleep.c (96%) rename qemu-coroutine.c => util/qemu-coroutine.c (98%) -- 2.4.3
