From: Tejun Heo <tj@kernel.org>
To: Shaohua Li <shli@fb.com>
Cc: linux-block@vger.kernel.org, axboe@kernel.dk, Kernel-team@fb.com,
Vivek Goyal <vgoyal@redhat.com>
Subject: Re: [PATCH] block-throttle: avoid double charge
Date: Mon, 13 Nov 2017 12:03:38 -0800 [thread overview]
Message-ID: <20171113200338.GK983427@devbig577.frc2.facebook.com> (raw)
In-Reply-To: <aac85300238aec9e310b5092260a6ec6e6f02e04.1507918159.git.shli@fb.com>
Hello, Shaohua.
On Fri, Oct 13, 2017 at 11:10:29AM -0700, Shaohua Li wrote:
> If a bio is throttled and splitted after throttling, the bio could be
> resubmited and enters the throttling again. This will cause part of the
> bio is charged multiple times. If the cgroup has an IO limit, the double
> charge will significantly harm the performance. The bio split becomes
> quite common after arbitrary bio size change.
Missed the patch previously. Sorry about that.
> Some sort of this patch probably should go into stable since v4.2
Seriously.
> @@ -2130,9 +2130,15 @@ bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
>
> WARN_ON_ONCE(!rcu_read_lock_held());
>
> - /* see throtl_charge_bio() */
> - if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
> + /*
> + * see throtl_charge_bio() for BIO_THROTTLED. If a bio is throttled
> + * against a disk but remapped to other disk, we should throttle it
> + * again
> + */
> + if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw] ||
> + (bio->bi_throttled_disk && bio->bi_throttled_disk == bio->bi_disk))
> goto out;
> + bio->bi_throttled_disk = NULL;
So, one question I have is whether we need both BIO_THROTTLED and
bi_throttled_disk. Can't we replace BIO_THROTTLED w/
bi_throttled_disk?
Thanks.
--
tejun
next prev parent reply other threads:[~2017-11-13 20:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-13 18:10 [PATCH] block-throttle: avoid double charge Shaohua Li
2017-11-13 20:03 ` Tejun Heo [this message]
2017-11-13 20:37 ` Tejun Heo
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=20171113200338.GK983427@devbig577.frc2.facebook.com \
--to=tj@kernel.org \
--cc=Kernel-team@fb.com \
--cc=axboe@kernel.dk \
--cc=linux-block@vger.kernel.org \
--cc=shli@fb.com \
--cc=vgoyal@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 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.