From: Max Reitz <mreitz@redhat.com>
To: John Snow <jsnow@redhat.com>, qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [Qemu-block] [PATCH v11 07/31] iotests.py: Add node_info()
Date: Mon, 8 Oct 2018 22:18:35 +0200 [thread overview]
Message-ID: <a7362a73-5a24-8152-cf67-6a761f697616@redhat.com> (raw)
In-Reply-To: <54cf31da-009e-c1b7-49f9-7bd5596d2142@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 2993 bytes --]
On 08.10.18 21:59, John Snow wrote:
>
>
> On 10/08/2018 03:57 PM, Max Reitz wrote:
>> On 08.10.18 21:34, John Snow wrote:
>>>
>>>
>>> On 10/05/2018 07:39 PM, Max Reitz wrote:
>>>> This function queries a node; since we cannot do that right now, it
>>>> executes query-named-block-nodes and returns the matching node's object.
>>>>
>>>> Signed-off-by: Max Reitz <mreitz@redhat.com>
>>>> ---
>>>> tests/qemu-iotests/iotests.py | 7 +++++++
>>>> 1 file changed, 7 insertions(+)
>>>>
>>>> diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
>>>> index 5c45788dac..604f200600 100644
>>>> --- a/tests/qemu-iotests/iotests.py
>>>> +++ b/tests/qemu-iotests/iotests.py
>>>> @@ -465,6 +465,13 @@ class VM(qtest.QEMUQtestMachine):
>>>> else:
>>>> iotests.log(ev)
>>>>
>>>> + def node_info(self, node_name):
>>>> + nodes = self.qmp('query-named-block-nodes')
>>>> + for x in nodes['return']:
>>>> + if x['node-name'] == node_name:
>>>> + return x
>>>> + return None
>>>> +
>>>>
>>>> index_re = re.compile(r'([^\[]+)\[([^\]]+)\]')
>>>>
>>>>
>>>
>>> Reviewed-by: John Snow <jsnow@redhat.com>
>>>
>>> Do we ever want to revisit the idea that our API should not do any
>>> pre-filtering and that it's always up to the client to do so?
>>
>> I mean we certainly want to revisit the idea that we should have a
>> proper query API.
>>
>> But what exactly do you mean by pre-filtering?
>>
>> Max
>>
>
> i.e. applying selection criteria before responding to the query. e.g.,
> by looking for matches on node-name.
>
> (Did I use i.e. and e.g. right?)
So you mean our API should do pre-filtering at the request of the client
and the client shouldn't be fed all nodes and then have to do
post-filtering?
Well, I certainly think we want a query command that doesn't return all
nodes. I personally would prefer something that only returns a single
node in the graph and its relationships, although I'm not sure whether
that is very efficient. Maybe something like inverse blockdev-add, were
the user can specify a depth on how deep references should be expanded.
Overall, I'm of the impression we want to have blockdev-reopen first so
that we have a good idea of the type of information we want to report
for a node; that being its node options, first and foremost. Probably
some stats as well, though.
Max
(The i.e. looks weird because you're not expanding a thought you've just
given, but you're actually responding to my question. It's like saying
"I want feature A." -- "We can do that, do you have any other remarks?"
-- "And I want B, too." So I would have started either with "e.g." (if
you think there are other things that could be meant by pre-filtering),
or by e.g. "I thought of". Probably the latter, since that is how I
interpreted your "i.e.".)
((Did I use the semicolon correctly?))
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2018-10-08 20:29 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-05 23:39 [Qemu-devel] [PATCH v11 00/31] block: Fix some filename generation issues Max Reitz
2018-10-05 23:39 ` [Qemu-devel] [PATCH v11 01/31] block: Use bdrv_refresh_filename() to pull Max Reitz
2018-11-15 3:00 ` Eric Blake
2018-10-05 23:39 ` [Qemu-devel] [PATCH v11 02/31] block: Use children list in bdrv_refresh_filename Max Reitz
2018-10-05 23:39 ` [Qemu-devel] [PATCH v11 03/31] block: Skip implicit nodes for filename info Max Reitz
2018-10-05 23:39 ` [Qemu-devel] [PATCH v11 04/31] block: Add BDS.auto_backing_file Max Reitz
2018-10-05 23:39 ` [Qemu-devel] [PATCH v11 05/31] block: Respect backing bs in bdrv_refresh_filename Max Reitz
2018-10-05 23:39 ` [Qemu-devel] [PATCH v11 06/31] iotests.py: Add filter_imgfmt() Max Reitz
2018-10-05 23:39 ` [Qemu-devel] [PATCH v11 07/31] iotests.py: Add node_info() Max Reitz
2018-10-08 19:34 ` [Qemu-devel] [Qemu-block] " John Snow
2018-10-08 19:57 ` Max Reitz
2018-10-08 19:59 ` John Snow
2018-10-08 20:18 ` Max Reitz [this message]
2018-10-09 12:14 ` [Qemu-devel] " Alberto Garcia
2018-11-15 2:56 ` Eric Blake
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 08/31] iotests: Add test for backing file overrides Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 09/31] block: Make path_combine() return the path Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 10/31] block: bdrv_get_full_backing_filename_from_...'s ret. val Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 11/31] block: bdrv_get_full_backing_filename's " Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 12/31] block: Add bdrv_make_absolute_filename() Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 13/31] block: Fix bdrv_find_backing_image() Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 14/31] block: Add bdrv_dirname() Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 15/31] blkverify: Make bdrv_dirname() return NULL Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 16/31] quorum: " Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 17/31] block/nbd: " Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 18/31] block/nfs: Implement bdrv_dirname() Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 19/31] block: Use bdrv_dirname() for relative filenames Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 20/31] iotests: Add quorum case to test 110 Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 21/31] block: Add strong_runtime_opts to BlockDriver Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 22/31] block: Add BlockDriver.bdrv_gather_child_options Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 23/31] block: Generically refresh runtime options Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 24/31] block: Purify .bdrv_refresh_filename() Max Reitz
2018-10-11 13:50 ` Alberto Garcia
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 25/31] block: Do not copy exact_filename from format file Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 26/31] block/nvme: Fix bdrv_refresh_filename() Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 27/31] block/curl: Harmonize option defaults Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 28/31] block/curl: Implement bdrv_refresh_filename() Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 29/31] block/null: Generate filename even with latency-ns Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 30/31] block: BDS options may lack the "driver" option Max Reitz
2018-10-05 23:40 ` [Qemu-devel] [PATCH v11 31/31] iotests: Test json:{} filenames of internal BDSs Max Reitz
2018-10-11 14:03 ` Alberto Garcia
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=a7362a73-5a24-8152-cf67-6a761f697616@redhat.com \
--to=mreitz@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@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 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).