From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45459) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bRr62-0002fa-CU for qemu-devel@nongnu.org; Mon, 25 Jul 2016 21:23:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bRr60-0001la-R9 for qemu-devel@nongnu.org; Mon, 25 Jul 2016 21:23:45 -0400 Message-ID: <5796BCB1.7080504@cn.fujitsu.com> Date: Tue, 26 Jul 2016 09:28:17 +0800 From: Changlong Xie MIME-Version: 1.0 References: <1469182567-3114-1-git-send-email-wangww.fnst@cn.fujitsu.com> <1469182567-3114-3-git-send-email-wangww.fnst@cn.fujitsu.com> <26e14cef-52af-14b2-fa0f-802d568ae638@redhat.com> In-Reply-To: <26e14cef-52af-14b2-fa0f-802d568ae638@redhat.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v22 02/10] Backup: clear all bitmap when doing block checkpoint List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Max Reitz , Wang WeiWei , qemu devel , qemu block , Stefan Hajnoczi , Fam Zheng , Kevin Wolf , Jeff Cody Cc: Paolo Bonzini , John Snow , Eric Blake , Markus Armbruster , "Dr. David Alan Gilbert" , Dong Eddie , Jiang Yunhong , zhanghailiang , Gonglei , Wen Congyang On 07/26/2016 05:18 AM, Max Reitz wrote: > On 22.07.2016 12:15, Wang WeiWei wrote: >> From: Wen Congyang >> >> Signed-off-by: Wen Congyang >> Signed-off-by: zhanghailiang >> Signed-off-by: Gonglei >> Signed-off-by: Changlong Xie >> Signed-off-by: Wang WeiWei >> --- >> block/backup.c | 18 ++++++++++++++++++ >> include/block/block_backup.h | 3 +++ >> 2 files changed, 21 insertions(+) >> create mode 100644 include/block/block_backup.h > > [...] > >> diff --git a/include/block/block_backup.h b/include/block/block_backup.h >> new file mode 100644 >> index 0000000..3753bcb >> --- /dev/null >> +++ b/include/block/block_backup.h >> @@ -0,0 +1,3 @@ >> +#include "block/block_int.h" >> + >> +void backup_do_checkpoint(BlockJob *job, Error **errp); > > Include guards and copyright notice missing. I don't mind the missing > copyright notice because it will default to GPL anyway. Also, I I think i can copy the Copyright from backup.c and update it > personally don't really mind the missing include guards, but I thought Btw i'll add #ifndef...#define...#endif in next version > I'd say something anyway. warm welcome > > Max >