From: Tejun Heo <tj@kernel.org>
To: Shaohua Li <shli@fb.com>
Cc: linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
Kernel-team@fb.com, axboe@fb.com, vgoyal@redhat.com
Subject: Re: [PATCH V4 05/15] blk-throttle: add downgrade logic
Date: Tue, 22 Nov 2016 16:21:21 -0500 [thread overview]
Message-ID: <20161122212121.GC17534@htj.duckdns.org> (raw)
In-Reply-To: <d5670c98a3e4239202c4dad8f16add803a629f15.1479161136.git.shli@fb.com>
Hello,
On Mon, Nov 14, 2016 at 02:22:12PM -0800, Shaohua Li wrote:
> +static unsigned long tg_last_high_overflow_time(struct throtl_grp *tg)
> +{
> + struct throtl_service_queue *parent_sq;
> + struct throtl_grp *parent = tg;
> + unsigned long ret = __tg_last_high_overflow_time(tg);
> +
> + while (true) {
> + parent_sq = parent->service_queue.parent_sq;
> + parent = sq_to_tg(parent_sq);
> + if (!parent)
> + break;
> + if (((parent->bps[READ][LIMIT_HIGH] != -1 &&
> + parent->bps[READ][LIMIT_HIGH] >=
> + tg->bps[READ][LIMIT_HIGH]) ||
> + (parent->bps[READ][LIMIT_HIGH] == -1 &&
> + parent->bps[READ][LIMIT_MAX] >=
> + tg->bps[READ][LIMIT_HIGH])) &&
> + ((parent->bps[WRITE][LIMIT_HIGH] != -1 &&
> + parent->bps[WRITE][LIMIT_HIGH] >=
> + tg->bps[WRITE][LIMIT_HIGH]) ||
> + (parent->bps[WRITE][LIMIT_HIGH] == -1 &&
> + parent->bps[WRITE][LIMIT_MAX] >=
> + tg->bps[WRITE][LIMIT_HIGH])) &&
> + ((parent->iops[READ][LIMIT_HIGH] != -1 &&
> + parent->iops[READ][LIMIT_HIGH] >=
> + tg->iops[READ][LIMIT_HIGH]) ||
> + (parent->iops[READ][LIMIT_HIGH] == -1 &&
> + parent->iops[READ][LIMIT_MAX] >=
> + tg->iops[READ][LIMIT_HIGH])) &&
> + ((parent->iops[WRITE][LIMIT_HIGH] != -1 &&
> + parent->iops[WRITE][LIMIT_HIGH] >=
> + tg->iops[WRITE][LIMIT_HIGH]) ||
> + (parent->iops[WRITE][LIMIT_HIGH] == -1 &&
> + parent->iops[WRITE][LIMIT_MAX] >=
> + tg->iops[WRITE][LIMIT_HIGH])))
> + break;
> + if (time_after(__tg_last_high_overflow_time(parent), ret))
> + ret = __tg_last_high_overflow_time(parent);
> + }
> + return ret;
> +}
Heh, I'm not really following the upgrade/downgrade logic. I'm having
trouble understanding two things.
1. A cgroup and its high and max limits don't have much to do with
other cgroups and their limits. I don't get how the choice between
high and max limits can be a td-wide state.
2. Comparing parent's and child's limits and saying that either can be
ignored because one is higher than the other isn't correct. A
parent's limit doesn't apply to each child separately. It has to
be aggregated. e.g. you can ignore a parent's setting if the sum
of all children's limits is smaller than the parent's but then
again there could still be a lower limit higher up the tree, so
they would still have to be examined.
Thanks.
--
tejun
next prev parent reply other threads:[~2016-11-22 21:21 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-14 22:22 [PATCH V4 00/15] blk-throttle: add .high limit Shaohua Li
2016-11-14 22:22 ` [PATCH V4 01/15] blk-throttle: prepare support multiple limits Shaohua Li
2016-11-14 22:22 ` [PATCH V4 02/15] blk-throttle: add .high interface Shaohua Li
2016-11-22 20:02 ` Tejun Heo
2016-11-22 23:08 ` Shaohua Li
2016-11-23 21:11 ` Tejun Heo
2016-11-14 22:22 ` [PATCH V4 03/15] blk-throttle: configure bps/iops limit for cgroup in high limit Shaohua Li
2016-11-22 20:16 ` Tejun Heo
2016-11-22 23:11 ` Shaohua Li
2016-11-14 22:22 ` [PATCH V4 04/15] blk-throttle: add upgrade logic for LIMIT_HIGH state Shaohua Li
2016-11-14 22:22 ` [PATCH V4 05/15] blk-throttle: add downgrade logic Shaohua Li
2016-11-22 21:21 ` Tejun Heo [this message]
2016-11-22 21:42 ` Tejun Heo
2016-11-22 23:38 ` Shaohua Li
2016-11-14 22:22 ` [PATCH V4 06/15] blk-throttle: make sure expire time isn't too big Shaohua Li
2016-11-14 22:22 ` [PATCH V4 07/15] blk-throttle: make throtl_slice tunable Shaohua Li
2016-11-22 21:27 ` Tejun Heo
2016-11-22 23:18 ` Shaohua Li
2016-11-23 21:17 ` Tejun Heo
2016-11-14 22:22 ` [PATCH V4 08/15] blk-throttle: detect completed idle cgroup Shaohua Li
2016-11-14 22:22 ` [PATCH V4 09/15] blk-throttle: make bandwidth change smooth Shaohua Li
2016-11-23 21:23 ` Tejun Heo
2016-11-24 0:59 ` Shaohua Li
2016-11-14 22:22 ` [PATCH V4 10/15] blk-throttle: add a simple idle detection Shaohua Li
2016-11-23 21:46 ` Tejun Heo
2016-11-24 1:15 ` Shaohua Li
2016-11-28 22:21 ` Tejun Heo
2016-11-28 23:10 ` Shaohua Li
2016-11-29 17:08 ` Tejun Heo
2016-11-14 22:22 ` [PATCH V4 11/15] blk-throttle: add interface to configure think time threshold Shaohua Li
2016-11-23 21:32 ` Tejun Heo
2016-11-24 1:06 ` Shaohua Li
2016-11-28 22:08 ` Tejun Heo
2016-11-28 22:14 ` Shaohua Li
2016-11-14 22:22 ` [PATCH V4 12/15] blk-throttle: ignore idle cgroup limit Shaohua Li
2016-11-14 22:22 ` [PATCH V4 13/15] blk-throttle: add a mechanism to estimate IO latency Shaohua Li
2016-11-14 23:40 ` kbuild test robot
2016-11-15 3:57 ` kbuild test robot
2016-11-29 17:24 ` Tejun Heo
2016-11-29 18:30 ` Shaohua Li
2016-11-29 22:36 ` Tejun Heo
2016-11-14 22:22 ` [PATCH V4 14/15] blk-throttle: add interface for per-cgroup target latency Shaohua Li
2016-11-14 22:22 ` [PATCH V4 15/15] blk-throttle: add latency target support Shaohua Li
2016-11-29 17:31 ` Tejun Heo
2016-11-29 18:14 ` Shaohua Li
2016-11-29 22:54 ` Tejun Heo
2016-11-29 23:39 ` Shaohua Li
2016-11-14 22:46 ` [PATCH V4 00/15] blk-throttle: add .high limit Bart Van Assche
2016-11-15 0:05 ` Shaohua Li
2016-11-15 0:41 ` Bart Van Assche
2016-11-15 0:49 ` Shaohua Li
2016-11-15 1:18 ` Bart Van Assche
2016-11-15 1:28 ` Shaohua Li
2016-11-15 19:53 ` Bart Van Assche
2016-11-15 21:31 ` Shaohua Li
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=20161122212121.GC17534@htj.duckdns.org \
--to=tj@kernel.org \
--cc=Kernel-team@fb.com \
--cc=axboe@fb.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome