From: Stefan Hajnoczi <stefanha@gmail.com>
To: Manos Pitsidianakis <el13635@mail.ntua.gr>
Cc: qemu-devel <qemu-devel@nongnu.org>, Kevin Wolf <kwolf@redhat.com>,
Stefan Hajnoczi <stefanha@redhat.com>,
qemu-block <qemu-block@nongnu.org>
Subject: Re: [Qemu-devel] [Qemu-block] [PATCH RFC v3 7/8] block: remove legacy I/O throttling
Date: Mon, 26 Jun 2017 16:44:44 +0100 [thread overview]
Message-ID: <20170626154444.GH29664@stefanha-x1.localdomain> (raw)
In-Reply-To: <20170623124700.1389-8-el13635@mail.ntua.gr>
[-- Attachment #1: Type: text/plain, Size: 4250 bytes --]
On Fri, Jun 23, 2017 at 03:46:59PM +0300, Manos Pitsidianakis wrote:
> @@ -1914,45 +1878,115 @@ int blk_commit_all(void)
> /* throttling disk I/O limits */
> void blk_set_io_limits(BlockBackend *blk, ThrottleConfig *cfg)
> {
> - throttle_group_config(&blk->public.throttle_group_member, cfg);
> + ThrottleGroupMember *tgm;
> +
> + assert(blk->public.throttle_node);
> + tgm = blk->public.throttle_node->opaque;
> + throttle_group_config(tgm, cfg);
block-backend.c should not access ->opaque. Instead block/throttle.c
could provide an interface:
void throttle_node_set_config(BlockDriverState *bs,
ThrottleConfig *cfg);
We know bs is always a throttle node but it's also possible for
block/trottle.c to check that:
assert(bs->drv == &throttle_driver_ops);
> }
>
> -void blk_io_limits_disable(BlockBackend *blk)
> +void blk_io_limits_disable(BlockBackend *blk, Error **errp)
> {
> - assert(blk->public.throttle_group_member.throttle_state);
> - bdrv_drained_begin(blk_bs(blk));
> - throttle_group_unregister_tgm(&blk->public.throttle_group_member);
> - bdrv_drained_end(blk_bs(blk));
> + Error *local_err = NULL;
> + BlockDriverState *bs, *throttle_node;
> +
> + throttle_node = blk_get_public(blk)->throttle_node;
> +
> + assert(throttle_node && throttle_node->refcnt == 1);
I'm not sure if we can enforce refcnt == 1. What stops other graph
manipulation operations from inserting a node above or a BB that uses
throttle_node as the root?
> +
> + bs = throttle_node->file->bs;
> + blk_get_public(blk)->throttle_node = NULL;
Missing drained_begin/end region around code that modifies the graph.
> +
> + /* ref throttle_node's child bs so that it isn't lost when throttle_node is
> + * destroyed */
> + bdrv_ref(bs);
> +
> + /* this destroys throttle_node */
> + blk_remove_bs(blk);
This assumes that throttle_node is the top node. How is this constraint enforced?
> +
> + blk_insert_bs(blk, bs, &local_err);
> + if (local_err) {
> + error_propagate(errp, local_err);
> + blk_insert_bs(blk, bs, NULL);
How does this handle the error? :)
If there's no way to handle the error then error_abort should be used.
> + }
> + bdrv_unref(bs);
> }
>
> /* should be called before blk_set_io_limits if a limit is set */
> -void blk_io_limits_enable(BlockBackend *blk, const char *group)
> +void blk_io_limits_enable(BlockBackend *blk, const char *group, Error **errp)
> {
> - blk->public.throttle_group_member.aio_context = blk_get_aio_context(blk);
> - assert(!blk->public.throttle_group_member.throttle_state);
> - throttle_group_register_tgm(&blk->public.throttle_group_member, group);
It would be nice to do:
assert(!blk->public.throttle_node);
> + BlockDriverState *bs = blk_bs(blk), *throttle_node;
> + Error *local_err = NULL;
> + /*
> + * increase bs refcount so it doesn't get deleted when removed
> + * from the BlockBackend's root
> + * */
> + bdrv_ref(bs);
> + blk_remove_bs(blk);
> +
> + QDict *options = qdict_new();
> + qdict_set_default_str(options, "file", bs->node_name);
> + qdict_set_default_str(options, "throttling-group", group);
> + throttle_node = bdrv_new_open_driver(bdrv_find_format("throttle"),
> + NULL, bdrv_get_flags(bs), options, &local_err);
> +
> + QDECREF(options);
Perhaps it's more consistent to use bdrv_open_inherit() ownership
semantics instead. Then callers don't need to worry about freeing
options.
> + if (local_err) {
> + blk_insert_bs(blk, bs, NULL);
&error_abort
> + bdrv_unref(bs);
> + error_propagate(errp, local_err);
> + return;
> + }
> + /* bs will be throttle_node's child now so unref it*/
> + bdrv_unref(bs);
> +
> + blk_insert_bs(blk, throttle_node, &local_err);
> + if (local_err) {
> + error_propagate(errp, local_err);
The only blk_insert_bs() errors are permission errors. Can the code
guarantee that permissions will always be usable? Then you can drop the
error handling and just use &error_abort.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
next prev parent reply other threads:[~2017-06-26 15:44 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-23 12:46 [Qemu-devel] [PATCH RFC v3 0/8] I/O Throtting block filter driver Manos Pitsidianakis
2017-06-23 12:46 ` [Qemu-devel] [PATCH RFC v3 1/8] block: move ThrottleGroup membership to ThrottleGroupMember Manos Pitsidianakis
2017-06-26 13:23 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-06-27 12:08 ` [Qemu-devel] " Alberto Garcia
2017-06-27 12:24 ` Manos Pitsidianakis
2017-06-23 12:46 ` [Qemu-devel] [PATCH RFC v3 2/8] block: Add aio_context field in ThrottleGroupMember Manos Pitsidianakis
2017-06-26 13:36 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-06-26 14:03 ` Manos Pitsidianakis
2017-06-27 12:39 ` [Qemu-devel] " Alberto Garcia
2017-06-28 11:27 ` Kevin Wolf
2017-06-28 12:15 ` Manos Pitsidianakis
2017-06-28 12:44 ` Kevin Wolf
2017-06-23 12:46 ` [Qemu-devel] [PATCH RFC v3 3/8] block: add throttle block filter driver Manos Pitsidianakis
2017-06-26 14:00 ` [Qemu-devel] [Qemu-block] " Manos Pitsidianakis
2017-06-26 14:30 ` Stefan Hajnoczi
2017-06-26 16:01 ` Manos Pitsidianakis
2017-06-27 12:42 ` Stefan Hajnoczi
2017-06-26 16:26 ` Manos Pitsidianakis
2017-06-27 12:45 ` Stefan Hajnoczi
2017-06-27 13:34 ` Manos Pitsidianakis
2017-06-28 12:11 ` Stefan Hajnoczi
2017-06-26 14:34 ` Stefan Hajnoczi
2017-06-28 14:40 ` [Qemu-devel] " Kevin Wolf
2017-06-28 15:22 ` Manos Pitsidianakis
2017-06-28 15:36 ` Kevin Wolf
2017-06-28 15:50 ` Manos Pitsidianakis
2017-06-23 12:46 ` [Qemu-devel] [PATCH RFC v3 4/8] block: convert ThrottleGroup to object with QOM Manos Pitsidianakis
2017-06-26 14:52 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-06-26 15:24 ` Manos Pitsidianakis
2017-06-27 12:57 ` Stefan Hajnoczi
2017-06-26 16:58 ` Manos Pitsidianakis
2017-06-27 13:02 ` Stefan Hajnoczi
2017-06-27 16:05 ` Alberto Garcia
2017-06-27 16:12 ` Manos Pitsidianakis
2017-06-28 12:07 ` Stefan Hajnoczi
2017-06-23 12:46 ` [Qemu-devel] [PATCH RFC v3 5/8] block: add BlockDevOptionsThrottle to QAPI Manos Pitsidianakis
2017-06-26 14:55 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-06-27 13:12 ` [Qemu-devel] " Eric Blake
2017-06-28 13:35 ` Alberto Garcia
2017-06-28 13:42 ` Manos Pitsidianakis
2017-06-28 15:50 ` Kevin Wolf
2017-06-28 16:02 ` Eric Blake
2017-06-28 16:18 ` Kevin Wolf
2017-06-23 12:46 ` [Qemu-devel] [PATCH RFC v3 6/8] block: add options parameter to bdrv_new_open_driver() Manos Pitsidianakis
2017-06-26 15:11 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-06-28 15:55 ` Kevin Wolf
2017-06-28 13:42 ` [Qemu-devel] " Alberto Garcia
2017-06-28 13:47 ` Manos Pitsidianakis
2017-06-23 12:46 ` [Qemu-devel] [PATCH RFC v3 7/8] block: remove legacy I/O throttling Manos Pitsidianakis
2017-06-26 15:44 ` Stefan Hajnoczi [this message]
2017-06-26 22:45 ` [Qemu-devel] [Qemu-block] " Manos Pitsidianakis
2017-06-27 13:08 ` Stefan Hajnoczi
2017-06-23 12:47 ` [Qemu-devel] [PATCH RFC v3 8/8] block: add throttle block filter driver interface tests Manos Pitsidianakis
2017-06-28 11:18 ` Kevin Wolf
2017-06-26 15:46 ` [Qemu-devel] [Qemu-block] [PATCH RFC v3 0/8] I/O Throtting block filter driver Stefan Hajnoczi
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=20170626154444.GH29664@stefanha-x1.localdomain \
--to=stefanha@gmail.com \
--cc=el13635@mail.ntua.gr \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.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).