Re: [patch 04/16] sched: validate CFS quota hierarchies

From: Bharata B Rao
Date: Wed Jun 22 2011 - 01:43:48 EST


On Tue, Jun 21, 2011 at 12:16:53AM -0700, Paul Turner wrote:
> Add constraints validation for CFS bandwidth hierarchies.
>
> Validate that:
> max(child bandwidth) <= parent_bandwidth
>
> In a quota limited hierarchy, an unconstrained entity
> (e.g. bandwidth==RUNTIME_INF) inherits the bandwidth of its parent.
>
> This constraint is chosen over sum(child_bandwidth) as notion of over-commit is
> valuable within SCHED_OTHER. Some basic code from the RT case is re-factored
> for reuse.
>
> Signed-off-by: Paul Turner <pjt@xxxxxxxxxx>
>
> ---
> kernel/sched.c | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++-------
> 1 file changed, 96 insertions(+), 13 deletions(-)
>
> Index: tip/kernel/sched.c
> ===================================================================
> --- tip.orig/kernel/sched.c
> +++ tip/kernel/sched.c
> @@ -249,6 +249,7 @@ struct cfs_bandwidth {
> raw_spinlock_t lock;
> ktime_t period;
> u64 quota;
> + s64 hierarchal_quota;

You mean hierarchical I suppose.

Regards,
Bharata.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/