From: Ming Lei <ming.lei@redhat.com>
To: Yu Kuai <yukuai1@huaweicloud.com>
Cc: tj@kernel.org, josef@toxicpanda.com, axboe@kernel.dk,
vgoyal@redhat.com, cgroups@vger.kernel.org,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
yukuai3@huawei.com, yi.zhang@huawei.com, yangerkun@huawei.com
Subject: Re: [PATCH] blk-throttle: fix lower bps rate by throtl_trim_slice()
Date: Wed, 26 Feb 2025 16:34:06 +0800 [thread overview]
Message-ID: <Z77R_rqgDdAvFVgP@fedora> (raw)
In-Reply-To: <20250226011627.242912-1-yukuai1@huaweicloud.com>
On Wed, Feb 26, 2025 at 09:16:27AM +0800, Yu Kuai wrote:
> From: Yu Kuai <yukuai3@huawei.com>
>
> The bio submission time may be a few jiffies more than the expected
> waiting time, due to 'extra_bytes' can't be divided in
> tg_within_bps_limit(), and also due to timer wakeup delay. In this
> case, adjust slice_start to jiffies will discard the extra wait time,
> causing lower rate than expected.
>
> This problem will cause blktests throtl/001 failure in case of
> CONFIG_HZ_100=y, fix it by preserving one finished slice in
> throtl_trim_slice() and allowing deviation between [0, 2 slices).
I think it only can cover single default slice deviation, since
throtl_trim_slice() just keeps dispatch data in the previous single
default slice. Or can you add words on how to allow 2 default slices
deviation?
>
> For example, assume bps_limit is 1000bytes, 1 jiffes is 10ms, and
> slice is 20ms(2 jiffies), expected rate is 1000 / 1000 * 20 = 20 bytes
> per slice.
>
> If user issues two 21 bytes IO, then wait time will be 30ms for the
> first IO:
>
> bytes_allowed = 20, extra_bytes = 1;
> jiffy_wait = 1 + 2 = 3 jiffies
>
> and consider
> extra 1 jiffies by timer, throtl_trim_slice() will be called at:
>
> jiffies = 40ms
> slice_start = 0ms, slice_end= 40ms
> bytes_disp = 21
>
> In this case, before the patch, real rate in the first two slices is
> 10.5 bytes per slice, and slice will be updated to:
>
> jiffies = 40ms
> slice_start = 40ms, slice_end = 60ms,
> bytes_disp = 0;
>
> Hence the second IO will have to wait another 30ms;
>
> With the patch, the real rate in the first slice is 20 bytes per slice,
> which is the same as expected, and slice will be updated:
>
> jiffies=40ms,
> slice_start = 20ms, slice_end = 60ms,
> bytes_disp = 1;
>
> And now, there is still 19 bytes allowed in the second slice, and the
> second IO will only have to wait 10ms;
>
> Fixes: e43473b7f223 ("blkio: Core implementation of throttle policy")
> Reported-by: Ming Lei <ming.lei@redhat.com>
> Closes: https://lore.kernel.org/linux-block/20250222092823.210318-3-yukuai1@huaweicloud.com/
> Signed-off-by: Yu Kuai <yukuai3@huawei.com>
> ---
> block/blk-throttle.c | 13 +++++++++++--
> 1 file changed, 11 insertions(+), 2 deletions(-)
>
> diff --git a/block/blk-throttle.c b/block/blk-throttle.c
> index 8d149aff9fd0..cb472cf7b6b6 100644
> --- a/block/blk-throttle.c
> +++ b/block/blk-throttle.c
> @@ -599,14 +599,23 @@ static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
> * sooner, then we need to reduce slice_end. A high bogus slice_end
> * is bad because it does not allow new slice to start.
> */
> -
> throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
>
> time_elapsed = rounddown(jiffies - tg->slice_start[rw],
> tg->td->throtl_slice);
> - if (!time_elapsed)
> + /* Don't trim slice until at least 2 slices are used */
> + if (time_elapsed < tg->td->throtl_slice * 2)
> return;
>
> + /*
> + * The bio submission time may be a few jiffies more than the expected
> + * waiting time, due to 'extra_bytes' can't be divided in
> + * tg_within_bps_limit(), and also due to timer wakeup delay. In this
> + * case, adjust slice_start to jiffies will discard the extra wait time,
> + * causing lower rate than expected. Therefore, one slice is preserved,
> + * allowing deviation that is less than two slices.
> + */
> + time_elapsed -= tg->td->throtl_slice;
Please document that default slice window size is doubled actually in
this way.
Thanks,
Ming
next prev parent reply other threads:[~2025-02-26 8:34 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-26 1:16 [PATCH] blk-throttle: fix lower bps rate by throtl_trim_slice() Yu Kuai
2025-02-26 8:34 ` Ming Lei [this message]
2025-02-26 9:56 ` Yu Kuai
2025-02-26 10:34 ` Ming Lei
2025-02-27 2:49 ` Yu Kuai
2025-02-26 16:48 ` 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=Z77R_rqgDdAvFVgP@fedora \
--to=ming.lei@redhat.com \
--cc=axboe@kernel.dk \
--cc=cgroups@vger.kernel.org \
--cc=josef@toxicpanda.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tj@kernel.org \
--cc=vgoyal@redhat.com \
--cc=yangerkun@huawei.com \
--cc=yi.zhang@huawei.com \
--cc=yukuai1@huaweicloud.com \
--cc=yukuai3@huawei.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