From: Paolo Bonzini <pbonzini@redhat.com>
To: Alberto Garcia <berto@igalia.com>, qemu-devel@nongnu.org
Cc: qemu-block@nongnu.org, qemu-stable@nongnu.org,
Kevin Wolf <kwolf@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 1/2] throttle: Correct access to wrong BlockBackendPublic structures
Date: Mon, 17 Oct 2016 17:56:33 +0200 [thread overview]
Message-ID: <7f03e7a1-5df6-8eff-686f-b4e6efaecdee@redhat.com> (raw)
In-Reply-To: <65c04b17fb38a4d89a599d6d52a1a3f621388d55.1476718804.git.berto@igalia.com>
On 17/10/2016 17:46, Alberto Garcia wrote:
> In 27ccdd52598290f0f8b58be56e235aff7aebfaf3 the throttling fields were
> moved from BlockDriverState to BlockBackend. However in a few cases
> the code started using throttling fields from the active BlockBackend
> instead of the round-robin token, making the algorithm behave
> incorrectly.
>
> This can cause starvation if there's a throttling group with several
> drives but only one of them has I/O.
>
> Reported-by: Paolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Alberto Garcia <berto@igalia.com>
> ---
> block/throttle-groups.c | 27 +++++++++++++++++++++++----
> 1 file changed, 23 insertions(+), 4 deletions(-)
>
> diff --git a/block/throttle-groups.c b/block/throttle-groups.c
> index 59545e2..17b2efb 100644
> --- a/block/throttle-groups.c
> +++ b/block/throttle-groups.c
> @@ -168,6 +168,22 @@ static BlockBackend *throttle_group_next_blk(BlockBackend *blk)
> return blk_by_public(next);
> }
>
> +/*
> + * Return whether a BlockBackend has pending requests.
> + *
> + * This assumes that tg->lock is held.
> + *
> + * @blk: the BlockBackend
> + * @is_write: the type of operation (read/write)
> + * @ret: whether the BlockBackend has pending requests.
> + */
> +static inline bool blk_has_pending_reqs(BlockBackend *blk,
> + bool is_write)
> +{
> + const BlockBackendPublic *blkp = blk_get_public(blk);
> + return blkp->pending_reqs[is_write];
> +}
> +
> /* Return the next BlockBackend in the round-robin sequence with pending I/O
> * requests.
> *
> @@ -188,7 +204,7 @@ static BlockBackend *next_throttle_token(BlockBackend *blk, bool is_write)
>
> /* get next bs round in round robin style */
> token = throttle_group_next_blk(token);
> - while (token != start && !blkp->pending_reqs[is_write]) {
> + while (token != start && !blk_has_pending_reqs(token, is_write)) {
> token = throttle_group_next_blk(token);
> }
>
> @@ -196,10 +212,13 @@ static BlockBackend *next_throttle_token(BlockBackend *blk, bool is_write)
> * then decide the token is the current bs because chances are
> * the current bs get the current request queued.
> */
> - if (token == start && !blkp->pending_reqs[is_write]) {
> + if (token == start && !blk_has_pending_reqs(token, is_write)) {
> token = blk;
> }
>
> + /* Either we return the original BB, or one with pending requests */
> + assert(token == blk || blk_has_pending_reqs(token, is_write));
Nice. :-)
> return token;
> }
>
> @@ -257,7 +276,7 @@ static void schedule_next_request(BlockBackend *blk, bool is_write)
>
> /* Check if there's any pending request to schedule next */
> token = next_throttle_token(blk, is_write);
> - if (!blkp->pending_reqs[is_write]) {
> + if (!blk_has_pending_reqs(token, is_write)) {
> return;
> }
>
> @@ -271,7 +290,7 @@ static void schedule_next_request(BlockBackend *blk, bool is_write)
> qemu_co_queue_next(&blkp->throttled_reqs[is_write])) {
> token = blk;
> } else {
> - ThrottleTimers *tt = &blkp->throttle_timers;
> + ThrottleTimers *tt = &blk_get_public(token)->throttle_timers;
> int64_t now = qemu_clock_get_ns(tt->clock_type);
> timer_mod(tt->timers[is_write], now + 1);
> tg->any_timer_armed[is_write] = true;
>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
next prev parent reply other threads:[~2016-10-17 15:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-17 15:46 [Qemu-devel] [PATCH 0/2] Correct access to wrong BlockBackendPublic structures Alberto Garcia
2016-10-17 15:46 ` [Qemu-devel] [PATCH 1/2] throttle: " Alberto Garcia
2016-10-17 15:56 ` Paolo Bonzini [this message]
2016-10-17 15:46 ` [Qemu-devel] [PATCH 2/2] qemu-iotests: Test I/O in a single drive from a throttling group Alberto Garcia
2016-10-18 14:09 ` [Qemu-devel] [PATCH 0/2] Correct access to wrong BlockBackendPublic structures Kevin Wolf
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=7f03e7a1-5df6-8eff-686f-b4e6efaecdee@redhat.com \
--to=pbonzini@redhat.com \
--cc=berto@igalia.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@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).