diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2016-04-27 11:05:05 +0100 |
---|---|---|
committer | Amit Shah <amit.shah@redhat.com> | 2016-05-26 11:31:45 +0530 |
commit | 64802ee57f68a2aedcdf06b8d4a65daa6d894e3a (patch) | |
tree | 1b99e487518f8bfa590e73a770096a854559a8f2 /migration/Makefile.objs | |
parent | e65c67e4dad18a1f04be426f23cc4d64a32c7548 (diff) |
migration: convert fd socket protocol to use QIOChannel
Convert the fd socket migration protocol driver to use
QIOChannel and QEMUFileChannel, instead of plain sockets
APIs. It can be unconditionally built because the
QIOChannel APIs it uses will take care to report suitable
error messages if needed.
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-Id: <1461751518-12128-16-git-send-email-berrange@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'migration/Makefile.objs')
-rw-r--r-- | migration/Makefile.objs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migration/Makefile.objs b/migration/Makefile.objs index 422186195e..2e5040c9e0 100644 --- a/migration/Makefile.objs +++ b/migration/Makefile.objs @@ -1,4 +1,4 @@ -common-obj-y += migration.o socket.o +common-obj-y += migration.o socket.o fd.o common-obj-y += vmstate.o common-obj-y += qemu-file.o qemu-file-buf.o qemu-file-unix.o qemu-file-stdio.o common-obj-y += qemu-file-channel.o @@ -6,7 +6,7 @@ common-obj-y += xbzrle.o postcopy-ram.o common-obj-y += qjson.o common-obj-$(CONFIG_RDMA) += rdma.o -common-obj-$(CONFIG_POSIX) += exec.o fd.o +common-obj-$(CONFIG_POSIX) += exec.o common-obj-y += block.o |