From: Markus Armbruster <armbru@redhat.com>
To: Eric Blake <eblake@redhat.com>
Cc: Max Reitz <mreitz@redhat.com>,
kwolf@redhat.com, qemu-block@nongnu.org,
mitake.hitoshi@lab.ntt.co.jp, jcody@redhat.com,
qemu-devel@nongnu.org, pbonzini@redhat.com, namei.unix@gmail.com
Subject: Re: [Qemu-devel] [for-2.9 4/8] block: Document -drive problematic code and bugs
Date: Thu, 30 Mar 2017 16:42:22 +0200 [thread overview]
Message-ID: <871ste4yi9.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <2e07453b-4d48-3acb-91bd-526de637c5c2@redhat.com> (Eric Blake's message of "Thu, 30 Mar 2017 08:09:33 -0500")
Eric Blake <eblake@redhat.com> writes:
> On 03/30/2017 01:52 AM, Markus Armbruster wrote:
>
>>>> +++ b/block.c
>>>> @@ -1157,6 +1157,12 @@ static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
>>>> if (file != NULL) {
>>>> filename = blk_bs(file)->filename;
>>>> } else {
>>>> + /*
>>>> + * Caution: direct use of non-string @options members is
>>>> + * problematic. When they come from -blockdev or blockdev_add,
>>>> + * members are typed according to the QAPI schema, but when
>>>> + * they come from -drive, they're all QString.
>>>> + */
>>>> filename = qdict_get_try_str(options, "filename");
>>>
>>> For instance this one: Well, yes, for -drive, this will always be a
>>> QString. Which is OK, because that's what we're trying to get.
>>>
>>> The comment makes this confusing, IMO. If you really want a comment here
>>> it should at least contain a mention that it's totally fine in practice
>>> here. Calling the code "problematic" sounds like this could blow up when
>>> it reality it can't; and I would think it actually is the most sane
>>> solution given the current state of the whole infrastructure (i.e. how
>>> -drive and -blockdev work).
>>
>> Well, if it could blow up, I'd call it wrong, and start the comment with
>> FIXME :)
>>
>> Even though qdict_get_try_str() is indeed fine, I propose to have a
>> comment, because someone with less detailed understanding of how the
>> configuration machine works (me, until yesterday, and probably again
>> after next month) could conclude that qdict_get_try_bool() would be just
>> as fine.
>>
>> What about:
>>
>> /*
>> * Caution: while qdict_get_try_str() is fine, getting non-string
>> * types would require more care. When @options come from -blockdev
>> * or blockdev_add, its members are typed according to the QAPI
>> * schema, but when they come from -drive, they're all QString.
>> */
>
> Yes, that's better - it makes it obvious that our current usage works,
> but that the code must not be carelessly edited if we add another field
> in the future.
If Max is also happy with it, I'll put it in v3.
next prev parent reply other threads:[~2017-03-30 14:42 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-29 16:45 [Qemu-devel] [for-2.9 0/8] Fixes and cleanups around SocketAddress Markus Armbruster
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 1/8] nbd sockets vnc: Mark problematic address family tests TODO Markus Armbruster
2017-03-29 18:55 ` Max Reitz
2017-03-29 19:51 ` Eric Blake
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 2/8] char: Fix socket with "type": "vsock" address Markus Armbruster
2017-03-29 16:48 ` Marc-André Lureau
2017-03-29 16:49 ` Marc-André Lureau
2017-03-30 6:32 ` Markus Armbruster
2017-03-29 18:42 ` Stefan Hajnoczi
2017-03-29 18:59 ` Max Reitz
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 3/8] io vnc sockets: Clean up SocketAddressKind switches Markus Armbruster
2017-03-29 19:13 ` Max Reitz
2017-03-30 6:38 ` Markus Armbruster
2017-04-03 11:47 ` Daniel P. Berrange
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 4/8] block: Document -drive problematic code and bugs Markus Armbruster
2017-03-29 19:33 ` Max Reitz
2017-03-30 6:52 ` Markus Armbruster
2017-03-30 13:09 ` Eric Blake
2017-03-30 14:42 ` Markus Armbruster [this message]
2017-03-30 16:10 ` Max Reitz
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 5/8] gluster: Prepare for SocketAddressFlat extension Markus Armbruster
2017-03-29 19:35 ` Max Reitz
2017-03-29 20:07 ` Jeff Cody
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 6/8] qapi-schema: SocketAddressFlat variants 'vsock' and 'fd' Markus Armbruster
2017-03-29 19:42 ` Max Reitz
2017-03-30 6:53 ` Markus Armbruster
2017-03-29 20:02 ` Eric Blake
2017-03-30 6:55 ` Markus Armbruster
2017-03-30 13:14 ` Eric Blake
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 7/8] nbd: Tidy up blockdev-add interface Markus Armbruster
2017-03-29 17:02 ` Paolo Bonzini
2017-03-29 19:46 ` Max Reitz
2017-03-30 7:27 ` Markus Armbruster
2017-03-29 20:19 ` Eric Blake
2017-03-30 7:06 ` Markus Armbruster
2017-03-29 16:45 ` [Qemu-devel] [for-2.9 8/8] sheepdog: Fix blockdev-add Markus Armbruster
2017-03-29 19:59 ` Max Reitz
2017-03-29 20:32 ` Eric Blake
2017-03-29 20:35 ` Max Reitz
2017-03-30 7:47 ` Markus Armbruster
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=871ste4yi9.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=eblake@redhat.com \
--cc=jcody@redhat.com \
--cc=kwolf@redhat.com \
--cc=mitake.hitoshi@lab.ntt.co.jp \
--cc=mreitz@redhat.com \
--cc=namei.unix@gmail.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.