From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51115) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVSCG-0005Cy-P7 for qemu-devel@nongnu.org; Thu, 25 Apr 2013 15:51:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UVSCE-0007VX-28 for qemu-devel@nongnu.org; Thu, 25 Apr 2013 15:51:12 -0400 Received: from e7.ny.us.ibm.com ([32.97.182.137]:59039) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVSCD-0007NF-Uc for qemu-devel@nongnu.org; Thu, 25 Apr 2013 15:51:09 -0400 Received: from /spool/local by e7.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 25 Apr 2013 15:50:49 -0400 Received: from d01relay06.pok.ibm.com (d01relay06.pok.ibm.com [9.56.227.116]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id 5B7286E8040 for ; Thu, 25 Apr 2013 15:50:45 -0400 (EDT) Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d01relay06.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r3PJolKR39649384 for ; Thu, 25 Apr 2013 15:50:48 -0400 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r3PJqZhR023812 for ; Thu, 25 Apr 2013 13:52:35 -0600 Message-ID: <517988D5.70406@linux.vnet.ibm.com> Date: Thu, 25 Apr 2013 15:49:41 -0400 From: "Michael R. Hines" MIME-Version: 1.0 References: <1366830057-16964-1-git-send-email-mrhines@linux.vnet.ibm.com> <1366830057-16964-11-git-send-email-mrhines@linux.vnet.ibm.com> <87d2tio0n1.fsf@codemonkey.ws> In-Reply-To: <87d2tio0n1.fsf@codemonkey.ws> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v6 10/11] rdma: core logic List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: quintela@redhat.com, qemu-devel@nongnu.org, owasserm@redhat.com, Bulent Abali , Michael R Hines , Gokul B Kandiraju , pbonzini@redhat.com On 04/25/2013 03:45 PM, Anthony Liguori wrote: > mrhines@linux.vnet.ibm.com writes: > >> From: "Michael R. Hines" >> >> 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 >> --- >> 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