From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47103) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOcDp-0007Hm-U9 for qemu-devel@nongnu.org; Wed, 27 Jan 2016 21:22:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aOcDm-0006A7-Lp for qemu-devel@nongnu.org; Wed, 27 Jan 2016 21:22:09 -0500 Received: from [59.151.112.132] (port=25455 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOcDm-00067U-9x for qemu-devel@nongnu.org; Wed, 27 Jan 2016 21:22:06 -0500 Message-ID: <56A97B78.5020203@cn.fujitsu.com> Date: Thu, 28 Jan 2016 10:22:48 +0800 From: Changlong Xie MIME-Version: 1.0 References: <1452676712-24239-1-git-send-email-xiecl.fnst@cn.fujitsu.com> <1452676712-24239-5-git-send-email-xiecl.fnst@cn.fujitsu.com> <20160127140402.GK26163@stefanha-x1.localdomain> In-Reply-To: <20160127140402.GK26163@stefanha-x1.localdomain> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v14 4/8] Allow creating backup jobs when opening BDS List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: Kevin Wolf , Fam Zheng , zhanghailiang , fnstml-hwcolo@cn.fujitsu.com, qemu devel , Max Reitz , Gonglei , Paolo Bonzini On 01/27/2016 10:04 PM, Stefan Hajnoczi wrote: > On Wed, Jan 13, 2016 at 05:18:28PM +0800, Changlong Xie wrote: >> From: Wen Congyang >> >> When opening BDS, we need to create backup jobs for >> image-fleecing. >> >> Signed-off-by: Wen Congyang >> Signed-off-by: zhanghailiang >> Signed-off-by: Gonglei >> Signed-off-by: Changlong Xie >> Reviewed-by: Stefan Hajnoczi >> Reviewed-by: Jeff Cody >> --- >> block/Makefile.objs | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/block/Makefile.objs b/block/Makefile.objs >> index 58ef2ef..fa05f37 100644 >> --- a/block/Makefile.objs >> +++ b/block/Makefile.objs >> @@ -22,10 +22,10 @@ block-obj-$(CONFIG_ARCHIPELAGO) += archipelago.o >> block-obj-$(CONFIG_LIBSSH2) += ssh.o >> block-obj-y += accounting.o >> block-obj-y += write-threshold.o >> +block-obj-y += backup.o >> >> common-obj-y += stream.o >> common-obj-y += commit.o >> -common-obj-y += backup.o >> >> iscsi.o-cflags := $(LIBISCSI_CFLAGS) >> iscsi.o-libs := $(LIBISCSI_LIBS) > > The commit message and description seem outdated. I guess the purpose > of this patch is to link the backup block job into all programs that use > the block layer because you want to add a dependency on the it from core > code. > Will update it in next version. Thanks -Xie