On 04/25/2013 03:45 PM, Anthony Liguori wrote:
mrhi...@linux.vnet.ibm.com writes:
From: "Michael R. Hines" <mrhi...@us.ibm.com>
Code that does need to be visible is kept
well contained inside this file and this is the only
new additional file to the entire patch - good progress.
This file includes the entire protocol and interfaces
required to perform RDMA migration.
Also, the configure and Makefile modifications to link
this file are included.
Full documentation is in docs/rdma.txt
Signed-off-by: Michael R. Hines <mrhi...@us.ibm.com>
---
Makefile.objs | 1 +
configure | 29 +++++++++++++++++++++++++++++
include/migration/migration.h | 4 ++++
migration.c | 8 ++++++++
migration-rdma.c | 2707
+++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 2749 insertions(+)
diff --git a/Makefile.objs b/Makefile.objs
index a473348..d744827 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -49,6 +49,7 @@ common-obj-$(CONFIG_POSIX) += os-posix.o
common-obj-$(CONFIG_LINUX) += fsdev/
common-obj-y += migration.o migration-tcp.o
+common-obj-$(CONFIG_RDMA) += migration-rdma.o
common-obj-y += qemu-char.o #aio.o
common-obj-y += block-migration.o
common-obj-y += page_cache.o xbzrle.o
diff --git a/configure b/configure
index 33d3354..90441cf 100755
--- a/configure
+++ b/configure
@@ -181,6 +181,7 @@ xfs=""
vhost_net="no"
vhost_scsi="no"
kvm="no"
+rdma="yes"
This should be:
rdma=""
Oooops..... Should I send out a v7 patch?
- Michael