From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56006) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVSXx-0001DR-R8 for qemu-devel@nongnu.org; Thu, 25 Apr 2013 16:13:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UVSXt-0006kN-41 for qemu-devel@nongnu.org; Thu, 25 Apr 2013 16:13:37 -0400 Received: from e23smtp07.au.ibm.com ([202.81.31.140]:32974) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVSXs-0006kF-IT for qemu-devel@nongnu.org; Thu, 25 Apr 2013 16:13:33 -0400 Received: from /spool/local by e23smtp07.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 26 Apr 2013 06:03:59 +1000 Received: from d23relay04.au.ibm.com (d23relay04.au.ibm.com [9.190.234.120]) by d23dlp01.au.ibm.com (Postfix) with ESMTP id 62B372CE804C for ; Fri, 26 Apr 2013 06:13:27 +1000 (EST) Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay04.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r3PJxouR19791900 for ; Fri, 26 Apr 2013 05:59:50 +1000 Received: from d23av03.au.ibm.com (loopback [127.0.0.1]) by d23av03.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r3PKDQX0030674 for ; Fri, 26 Apr 2013 06:13:26 +1000 From: Anthony Liguori In-Reply-To: <517988D5.70406@linux.vnet.ibm.com> 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> <517988D5.70406@linux.vnet.ibm.com> Date: Thu, 25 Apr 2013 15:13:20 -0500 Message-ID: <87wqrqs71b.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH v6 10/11] rdma: core logic List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael R. Hines" Cc: quintela@redhat.com, qemu-devel@nongnu.org, owasserm@redhat.com, Bulent Abali , Michael R Hines , Gokul B Kandiraju , pbonzini@redhat.com "Michael R. Hines" writes: > 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? Yes. Regards, Anthony Liguori > > - Michael