diff options
Diffstat (limited to 'kernel/sched.c')
| -rw-r--r-- | kernel/sched.c | 30 | 
1 files changed, 24 insertions, 6 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index c1d0ed360088..8e2558c2ba67 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -223,7 +223,7 @@ static void start_rt_bandwidth(struct rt_bandwidth *rt_b)  {  	ktime_t now; -	if (rt_bandwidth_enabled() && rt_b->rt_runtime == RUNTIME_INF) +	if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)  		return;  	if (hrtimer_active(&rt_b->rt_period_timer)) @@ -6944,20 +6944,26 @@ static void free_rootdomain(struct root_domain *rd)  static void rq_attach_root(struct rq *rq, struct root_domain *rd)  { +	struct root_domain *old_rd = NULL;  	unsigned long flags;  	spin_lock_irqsave(&rq->lock, flags);  	if (rq->rd) { -		struct root_domain *old_rd = rq->rd; +		old_rd = rq->rd;  		if (cpumask_test_cpu(rq->cpu, old_rd->online))  			set_rq_offline(rq);  		cpumask_clear_cpu(rq->cpu, old_rd->span); -		if (atomic_dec_and_test(&old_rd->refcount)) -			free_rootdomain(old_rd); +		/* +		 * If we dont want to free the old_rt yet then +		 * set old_rd to NULL to skip the freeing later +		 * in this function: +		 */ +		if (!atomic_dec_and_test(&old_rd->refcount)) +			old_rd = NULL;  	}  	atomic_inc(&rd->refcount); @@ -6968,6 +6974,9 @@ static void rq_attach_root(struct rq *rq, struct root_domain *rd)  		set_rq_online(rq);  	spin_unlock_irqrestore(&rq->lock, flags); + +	if (old_rd) +		free_rootdomain(old_rd);  }  static int __init_refok init_rootdomain(struct root_domain *rd, bool bootmem) @@ -9215,6 +9224,16 @@ static int sched_rt_global_constraints(void)  	return ret;  } + +int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk) +{ +	/* Don't accept realtime tasks when there is no way for them to run */ +	if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0) +		return 0; + +	return 1; +} +  #else /* !CONFIG_RT_GROUP_SCHED */  static int sched_rt_global_constraints(void)  { @@ -9308,8 +9327,7 @@ cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,  		      struct task_struct *tsk)  {  #ifdef CONFIG_RT_GROUP_SCHED -	/* Don't accept realtime tasks when there is no way for them to run */ -	if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0) +	if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))  		return -EINVAL;  #else  	/* We don't support RT-tasks being in separate groups */  |