Re: [Qemu-block] [PATCH v4 04/12] block/nbd: Use qdict_put()

2016-10-13 Thread Kevin Wolf
Am 28.09.2016 um 22:55 hat Max Reitz geschrieben:
> Instead of inlining this nice macro (i.e. resorting to
> qdict_put_obj(..., QOBJECT(...))), use it.
> 
> Signed-off-by: Max Reitz 

Reviewed-by: Kevin Wolf 



Re: [Qemu-block] [PATCH v4 04/12] block/nbd: Use qdict_put()

2016-10-03 Thread Eric Blake
On 09/28/2016 03:55 PM, Max Reitz wrote:
> Instead of inlining this nice macro (i.e. resorting to
> qdict_put_obj(..., QOBJECT(...))), use it.
> 
> Signed-off-by: Max Reitz 
> ---
>  block/nbd.c | 13 ++---
>  1 file changed, 6 insertions(+), 7 deletions(-)
> 

Reviewed-by: Eric Blake 

Hmm - should we have a Coccinelle script to automate this?

-- 
Eric Blake   eblake redhat com+1-919-301-3266
Libvirt virtualization library http://libvirt.org



signature.asc
Description: OpenPGP digital signature


[Qemu-block] [PATCH v4 04/12] block/nbd: Use qdict_put()

2016-09-28 Thread Max Reitz
Instead of inlining this nice macro (i.e. resorting to
qdict_put_obj(..., QOBJECT(...))), use it.

Signed-off-by: Max Reitz 
---
 block/nbd.c | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/block/nbd.c b/block/nbd.c
index c77a969..c539fb5 100644
--- a/block/nbd.c
+++ b/block/nbd.c
@@ -446,7 +446,7 @@ static void nbd_refresh_filename(BlockDriverState *bs, 
QDict *options)
 QDict *opts = qdict_new();
 const char *port = s->port ?: stringify(NBD_DEFAULT_PORT);
 
-qdict_put_obj(opts, "driver", QOBJECT(qstring_from_str("nbd")));
+qdict_put(opts, "driver", qstring_from_str("nbd"));
 
 if (s->path && s->export) {
 snprintf(bs->exact_filename, sizeof(bs->exact_filename),
@@ -463,17 +463,16 @@ static void nbd_refresh_filename(BlockDriverState *bs, 
QDict *options)
 }
 
 if (s->path) {
-qdict_put_obj(opts, "path", QOBJECT(qstring_from_str(s->path)));
+qdict_put(opts, "path", qstring_from_str(s->path));
 } else {
-qdict_put_obj(opts, "host", QOBJECT(qstring_from_str(s->host)));
-qdict_put_obj(opts, "port", QOBJECT(qstring_from_str(port)));
+qdict_put(opts, "host", qstring_from_str(s->host));
+qdict_put(opts, "port", qstring_from_str(port));
 }
 if (s->export) {
-qdict_put_obj(opts, "export", QOBJECT(qstring_from_str(s->export)));
+qdict_put(opts, "export", qstring_from_str(s->export));
 }
 if (s->tlscredsid) {
-qdict_put_obj(opts, "tls-creds",
-  QOBJECT(qstring_from_str(s->tlscredsid)));
+qdict_put(opts, "tls-creds", qstring_from_str(s->tlscredsid));
 }
 
 bs->full_open_options = opts;
-- 
2.10.0