* [Qemu-devel] [PATCH v2] block/gluster: fix doc in the qapi schema and member name
@ 2016-07-22 14:34 Prasanna Kumar Kalever
2016-07-22 14:46 ` [Qemu-devel] [PATCH for-2.7 " Eric Blake
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Prasanna Kumar Kalever @ 2016-07-22 14:34 UTC (permalink / raw)
To: qemu-devel; +Cc: armbru, eblake, jcody, Prasanna Kumar Kalever
1. qapi @BlockdevOptionsGluster schema member name s/debug_level/debug-level/
2. rearrange the versioning
3. s/server description/servers description/
Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
v2: address review comments given by Eric Blake
v1: Initial patch
---
qapi/block-core.json | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/qapi/block-core.json b/qapi/block-core.json
index f462345..cd14e57 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -1688,9 +1688,9 @@
# Drivers that are supported in block device operations.
#
# @host_device, @host_cdrom: Since 2.1
+# @gluster: Since 2.7
#
# Since: 2.0
-# @gluster: Since 2.7
##
{ 'enum': 'BlockdevDriver',
'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
@@ -2134,7 +2134,7 @@
#
# @path: absolute path to image file in gluster volume
#
-# @server: gluster server description
+# @server: gluster servers description
#
# @debug-level: #optional libgfapi log level (default '4' which is Error)
#
@@ -2144,7 +2144,7 @@
'data': { 'volume': 'str',
'path': 'str',
'server': ['GlusterServer'],
- '*debug_level': 'int' } }
+ '*debug-level': 'int' } }
##
# @BlockdevOptions
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH for-2.7 v2] block/gluster: fix doc in the qapi schema and member name
2016-07-22 14:34 [Qemu-devel] [PATCH v2] block/gluster: fix doc in the qapi schema and member name Prasanna Kumar Kalever
@ 2016-07-22 14:46 ` Eric Blake
2016-07-22 14:51 ` Prasanna Kalever
2016-07-22 16:52 ` [Qemu-devel] [PATCH " Jeff Cody
2016-07-22 17:17 ` Jeff Cody
2 siblings, 1 reply; 5+ messages in thread
From: Eric Blake @ 2016-07-22 14:46 UTC (permalink / raw)
To: Prasanna Kumar Kalever, qemu-devel; +Cc: armbru, jcody
[-- Attachment #1: Type: text/plain, Size: 1008 bytes --]
On 07/22/2016 08:34 AM, Prasanna Kumar Kalever wrote:
> 1. qapi @BlockdevOptionsGluster schema member name s/debug_level/debug-level/
> 2. rearrange the versioning
> 3. s/server description/servers description/
>
> Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
This part is fine.
> v2: address review comments given by Eric Blake
> v1: Initial patch
But these lines...
> ---
...should be here. They are useful to reviewers, but do not need to
clutter qemu.git, so putting them after the separator lets 'git am'
automatically strip them.
The maintainer can probably fix that without needing a respin.
> qapi/block-core.json | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
Reviewed-by: Eric Blake <eblake@redhat.com>
Must go in during hard freeze for 2.7, otherwise it would be an ABI
change compared to released code.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH for-2.7 v2] block/gluster: fix doc in the qapi schema and member name
2016-07-22 14:46 ` [Qemu-devel] [PATCH for-2.7 " Eric Blake
@ 2016-07-22 14:51 ` Prasanna Kalever
0 siblings, 0 replies; 5+ messages in thread
From: Prasanna Kalever @ 2016-07-22 14:51 UTC (permalink / raw)
To: Eric Blake
Cc: Prasanna Kumar Kalever, qemu-devel, Markus Armbruster,
Jeffrey Cody
On Fri, Jul 22, 2016 at 8:16 PM, Eric Blake <eblake@redhat.com> wrote:
> On 07/22/2016 08:34 AM, Prasanna Kumar Kalever wrote:
>> 1. qapi @BlockdevOptionsGluster schema member name s/debug_level/debug-level/
>> 2. rearrange the versioning
>> 3. s/server description/servers description/
>>
>> Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
>
> This part is fine.
>
>> v2: address review comments given by Eric Blake
>> v1: Initial patch
>
> But these lines...
>
>> ---
>
> ...should be here. They are useful to reviewers, but do not need to
> clutter qemu.git, so putting them after the separator lets 'git am'
> automatically strip them.
I learned this before :)
This was not intentional
Thanks,
--
Prasanna
>
> The maintainer can probably fix that without needing a respin.
>
>> qapi/block-core.json | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>
> Reviewed-by: Eric Blake <eblake@redhat.com>
>
> Must go in during hard freeze for 2.7, otherwise it would be an ABI
> change compared to released code.
>
> --
> Eric Blake eblake redhat com +1-919-301-3266
> Libvirt virtualization library http://libvirt.org
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] block/gluster: fix doc in the qapi schema and member name
2016-07-22 14:34 [Qemu-devel] [PATCH v2] block/gluster: fix doc in the qapi schema and member name Prasanna Kumar Kalever
2016-07-22 14:46 ` [Qemu-devel] [PATCH for-2.7 " Eric Blake
@ 2016-07-22 16:52 ` Jeff Cody
2016-07-22 17:17 ` Jeff Cody
2 siblings, 0 replies; 5+ messages in thread
From: Jeff Cody @ 2016-07-22 16:52 UTC (permalink / raw)
To: Prasanna Kumar Kalever; +Cc: qemu-devel, armbru, eblake
On Fri, Jul 22, 2016 at 08:04:08PM +0530, Prasanna Kumar Kalever wrote:
> 1. qapi @BlockdevOptionsGluster schema member name s/debug_level/debug-level/
> 2. rearrange the versioning
> 3. s/server description/servers description/
>
> Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
> v2: address review comments given by Eric Blake
> v1: Initial patch
> ---
> qapi/block-core.json | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/qapi/block-core.json b/qapi/block-core.json
> index f462345..cd14e57 100644
> --- a/qapi/block-core.json
> +++ b/qapi/block-core.json
> @@ -1688,9 +1688,9 @@
> # Drivers that are supported in block device operations.
> #
> # @host_device, @host_cdrom: Since 2.1
> +# @gluster: Since 2.7
> #
> # Since: 2.0
> -# @gluster: Since 2.7
> ##
> { 'enum': 'BlockdevDriver',
> 'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
> @@ -2134,7 +2134,7 @@
> #
> # @path: absolute path to image file in gluster volume
> #
> -# @server: gluster server description
> +# @server: gluster servers description
> #
> # @debug-level: #optional libgfapi log level (default '4' which is Error)
> #
> @@ -2144,7 +2144,7 @@
> 'data': { 'volume': 'str',
> 'path': 'str',
> 'server': ['GlusterServer'],
> - '*debug_level': 'int' } }
> + '*debug-level': 'int' } }
>
> ##
> # @BlockdevOptions
> --
> 2.7.4
>
Reviewed-by: Jeff Cody <jcody@redhat.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH v2] block/gluster: fix doc in the qapi schema and member name
2016-07-22 14:34 [Qemu-devel] [PATCH v2] block/gluster: fix doc in the qapi schema and member name Prasanna Kumar Kalever
2016-07-22 14:46 ` [Qemu-devel] [PATCH for-2.7 " Eric Blake
2016-07-22 16:52 ` [Qemu-devel] [PATCH " Jeff Cody
@ 2016-07-22 17:17 ` Jeff Cody
2 siblings, 0 replies; 5+ messages in thread
From: Jeff Cody @ 2016-07-22 17:17 UTC (permalink / raw)
To: Prasanna Kumar Kalever; +Cc: qemu-devel, armbru, eblake
On Fri, Jul 22, 2016 at 08:04:08PM +0530, Prasanna Kumar Kalever wrote:
> 1. qapi @BlockdevOptionsGluster schema member name s/debug_level/debug-level/
> 2. rearrange the versioning
> 3. s/server description/servers description/
>
> Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
> v2: address review comments given by Eric Blake
> v1: Initial patch
> ---
> qapi/block-core.json | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/qapi/block-core.json b/qapi/block-core.json
> index f462345..cd14e57 100644
> --- a/qapi/block-core.json
> +++ b/qapi/block-core.json
> @@ -1688,9 +1688,9 @@
> # Drivers that are supported in block device operations.
> #
> # @host_device, @host_cdrom: Since 2.1
> +# @gluster: Since 2.7
> #
> # Since: 2.0
> -# @gluster: Since 2.7
> ##
> { 'enum': 'BlockdevDriver',
> 'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
> @@ -2134,7 +2134,7 @@
> #
> # @path: absolute path to image file in gluster volume
> #
> -# @server: gluster server description
> +# @server: gluster servers description
> #
> # @debug-level: #optional libgfapi log level (default '4' which is Error)
> #
> @@ -2144,7 +2144,7 @@
> 'data': { 'volume': 'str',
> 'path': 'str',
> 'server': ['GlusterServer'],
> - '*debug_level': 'int' } }
> + '*debug-level': 'int' } }
>
> ##
> # @BlockdevOptions
> --
> 2.7.4
>
Thanks,
Applied to my block branch:
git://github.com/codyprime/qemu-kvm-jtc.git block
-Jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-07-22 17:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-22 14:34 [Qemu-devel] [PATCH v2] block/gluster: fix doc in the qapi schema and member name Prasanna Kumar Kalever
2016-07-22 14:46 ` [Qemu-devel] [PATCH for-2.7 " Eric Blake
2016-07-22 14:51 ` Prasanna Kalever
2016-07-22 16:52 ` [Qemu-devel] [PATCH " Jeff Cody
2016-07-22 17:17 ` Jeff Cody
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).