From: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
To: Max Reitz <mreitz@redhat.com>,
Wang WeiWei <wangww.fnst@cn.fujitsu.com>,
qemu devel <qemu-devel@nongnu.org>,
qemu block <qemu-block@nongnu.org>,
Stefan Hajnoczi <stefanha@redhat.com>,
Fam Zheng <famz@redhat.com>, Kevin Wolf <kwolf@redhat.com>,
Jeff Cody <jcody@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>, John Snow <jsnow@redhat.com>,
Eric Blake <eblake@redhat.com>,
Markus Armbruster <armbru@redhat.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Dong Eddie <eddie.dong@intel.com>,
Jiang Yunhong <yunhong.jiang@intel.com>,
zhanghailiang <zhang.zhanghailiang@huawei.com>,
Gonglei <arei.gonglei@huawei.com>,
Wen Congyang <wency@cn.fujitsu.com>
Subject: Re: [Qemu-devel] [PATCH v22 10/10] support replication driver in blockdev-add
Date: Tue, 26 Jul 2016 10:41:19 +0800 [thread overview]
Message-ID: <5796CDCF.30306@cn.fujitsu.com> (raw)
In-Reply-To: <7e07b40d-b0b8-1a2a-e446-007316deba67@redhat.com>
On 07/26/2016 07:00 AM, Max Reitz wrote:
> On 22.07.2016 12:16, Wang WeiWei wrote:
>> From: Wen Congyang <wency@cn.fujitsu.com>
>>
>> Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
>> Signed-off-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
>> Signed-off-by: Gonglei <arei.gonglei@huawei.com>
>> Signed-off-by: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
>> Reviewed-by: Eric Blake <eblake@redhat.com>
>> Signed-off-by: Wang WeiWei <wangww.fnst@cn.fujitsu.com>
>> ---
>> qapi/block-core.json | 19 +++++++++++++++++--
>> 1 file changed, 17 insertions(+), 2 deletions(-)
>>
>> diff --git a/qapi/block-core.json b/qapi/block-core.json
>> index 7f05b68..59565e9 100644
>> --- a/qapi/block-core.json
>> +++ b/qapi/block-core.json
>> @@ -248,6 +248,7 @@
>> # 2.3: 'host_floppy' deprecated
>> # 2.5: 'host_floppy' dropped
>> # 2.6: 'luks' added
>> +# 2.7: 'replication' added
>
> Probably 2.8
yes
>
>> #
>> # @backing_file: #optional the name of the backing file (for copy-on-write)
>> #
>> @@ -1696,8 +1697,8 @@
>> 'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
>> 'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom',
>> 'host_device', 'http', 'https', 'luks', 'null-aio', 'null-co',
>> - 'parallels', 'qcow', 'qcow2', 'qed', 'quorum', 'raw', 'tftp',
>> - 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat' ] }
>> + 'parallels', 'qcow', 'qcow2', 'qed', 'quorum', 'raw', 'replication',
>> + 'tftp', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat' ] }
>>
>> ##
>> # @BlockdevOptionsFile
>> @@ -2160,6 +2161,19 @@
>> { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ] }
>>
>> ##
>> +# @BlockdevOptionsReplication
>> +#
>> +# Driver specific block device options for replication
>> +#
>> +# @mode: the replication mode
>
> What about top-id?
Sorry, i'll add it in next version
>
>> +#
>> +# Since: 2.7
>
> 2.8
yes.
>
> Max
>
>> +##
>> +{ 'struct': 'BlockdevOptionsReplication',
>> + 'base': 'BlockdevOptionsGenericFormat',
>> + 'data': { 'mode': 'ReplicationMode' } }
>> +
>> +##
>> # @BlockdevOptions
>> #
>> # Options for creating a block device. Many options are available for all
>> @@ -2224,6 +2238,7 @@
>> 'quorum': 'BlockdevOptionsQuorum',
>> 'raw': 'BlockdevOptionsGenericFormat',
>> # TODO rbd: Wait for structured options
>> + 'replication':'BlockdevOptionsReplication',
>> # TODO sheepdog: Wait for structured options
>> # TODO ssh: Should take InetSocketAddress for 'host'?
>> 'tftp': 'BlockdevOptionsFile',
>>
>
>
next prev parent reply other threads:[~2016-07-26 2:36 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-22 10:15 [Qemu-devel] [PATCH v22 00/10] Block replication for continuous checkpoints Wang WeiWei
2016-07-22 10:15 ` [Qemu-devel] [PATCH v22 01/10] unblock backup operations in backing file Wang WeiWei
2016-07-22 10:15 ` [Qemu-devel] [PATCH v22 02/10] Backup: clear all bitmap when doing block checkpoint Wang WeiWei
2016-07-25 21:18 ` Max Reitz
2016-07-26 1:28 ` Changlong Xie
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 03/10] Backup: export interfaces for extra serialization Wang WeiWei
2016-07-25 21:50 ` Max Reitz
2016-07-26 2:03 ` Changlong Xie
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 04/10] Link backup into block core Wang WeiWei
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 05/10] docs: block replication's description Wang WeiWei
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 06/10] auto complete active commit Wang WeiWei
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 07/10] Introduce new APIs to do replication operation Wang WeiWei
2016-07-25 22:23 ` Max Reitz
2016-07-26 2:08 ` Changlong Xie
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 08/10] Implement new driver for block replication Wang WeiWei
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 09/10] tests: add unit test case for replication Wang WeiWei
2016-07-22 10:16 ` [Qemu-devel] [PATCH v22 10/10] support replication driver in blockdev-add Wang WeiWei
2016-07-25 23:00 ` Max Reitz
2016-07-26 2:41 ` Changlong Xie [this message]
2016-07-25 3:44 ` [Qemu-devel] [PATCH v22 00/10] Block replication for continuous checkpoints Changlong Xie
2016-07-25 14:34 ` Stefan Hajnoczi
2016-07-25 23:11 ` Max Reitz
2016-07-26 3:00 ` Changlong Xie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5796CDCF.30306@cn.fujitsu.com \
--to=xiecl.fnst@cn.fujitsu.com \
--cc=arei.gonglei@huawei.com \
--cc=armbru@redhat.com \
--cc=dgilbert@redhat.com \
--cc=eblake@redhat.com \
--cc=eddie.dong@intel.com \
--cc=famz@redhat.com \
--cc=jcody@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=wangww.fnst@cn.fujitsu.com \
--cc=wency@cn.fujitsu.com \
--cc=yunhong.jiang@intel.com \
--cc=zhang.zhanghailiang@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).