forked from Minki/linux
Merge branch 'sched/urgent' into sched/core
Conflicts: kernel/sched.c Necessary due to the urgent fixes which conflict with the code move from sched.c to sched_fair.c Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
commit
6e40f5bbbc
@ -870,7 +870,10 @@ static inline int sd_balance_for_mc_power(void)
|
|||||||
if (sched_smt_power_savings)
|
if (sched_smt_power_savings)
|
||||||
return SD_POWERSAVINGS_BALANCE;
|
return SD_POWERSAVINGS_BALANCE;
|
||||||
|
|
||||||
return SD_PREFER_SIBLING;
|
if (!sched_mc_power_savings)
|
||||||
|
return SD_PREFER_SIBLING;
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int sd_balance_for_package_power(void)
|
static inline int sd_balance_for_package_power(void)
|
||||||
|
@ -897,6 +897,19 @@ static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
|
|||||||
}
|
}
|
||||||
#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
|
#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check whether the task is waking, we use this to synchronize against
|
||||||
|
* ttwu() so that task_cpu() reports a stable number.
|
||||||
|
*
|
||||||
|
* We need to make an exception for PF_STARTING tasks because the fork
|
||||||
|
* path might require task_rq_lock() to work, eg. it can call
|
||||||
|
* set_cpus_allowed_ptr() from the cpuset clone_ns code.
|
||||||
|
*/
|
||||||
|
static inline int task_is_waking(struct task_struct *p)
|
||||||
|
{
|
||||||
|
return unlikely((p->state == TASK_WAKING) && !(p->flags & PF_STARTING));
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* __task_rq_lock - lock the runqueue a given task resides on.
|
* __task_rq_lock - lock the runqueue a given task resides on.
|
||||||
* Must be called interrupts disabled.
|
* Must be called interrupts disabled.
|
||||||
@ -904,10 +917,14 @@ static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
|
|||||||
static inline struct rq *__task_rq_lock(struct task_struct *p)
|
static inline struct rq *__task_rq_lock(struct task_struct *p)
|
||||||
__acquires(rq->lock)
|
__acquires(rq->lock)
|
||||||
{
|
{
|
||||||
|
struct rq *rq;
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
struct rq *rq = task_rq(p);
|
while (task_is_waking(p))
|
||||||
|
cpu_relax();
|
||||||
|
rq = task_rq(p);
|
||||||
raw_spin_lock(&rq->lock);
|
raw_spin_lock(&rq->lock);
|
||||||
if (likely(rq == task_rq(p)))
|
if (likely(rq == task_rq(p) && !task_is_waking(p)))
|
||||||
return rq;
|
return rq;
|
||||||
raw_spin_unlock(&rq->lock);
|
raw_spin_unlock(&rq->lock);
|
||||||
}
|
}
|
||||||
@ -924,10 +941,12 @@ static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
|
|||||||
struct rq *rq;
|
struct rq *rq;
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
|
while (task_is_waking(p))
|
||||||
|
cpu_relax();
|
||||||
local_irq_save(*flags);
|
local_irq_save(*flags);
|
||||||
rq = task_rq(p);
|
rq = task_rq(p);
|
||||||
raw_spin_lock(&rq->lock);
|
raw_spin_lock(&rq->lock);
|
||||||
if (likely(rq == task_rq(p)))
|
if (likely(rq == task_rq(p) && !task_is_waking(p)))
|
||||||
return rq;
|
return rq;
|
||||||
raw_spin_unlock_irqrestore(&rq->lock, *flags);
|
raw_spin_unlock_irqrestore(&rq->lock, *flags);
|
||||||
}
|
}
|
||||||
@ -2374,14 +2393,27 @@ static int try_to_wake_up(struct task_struct *p, unsigned int state,
|
|||||||
__task_rq_unlock(rq);
|
__task_rq_unlock(rq);
|
||||||
|
|
||||||
cpu = select_task_rq(p, SD_BALANCE_WAKE, wake_flags);
|
cpu = select_task_rq(p, SD_BALANCE_WAKE, wake_flags);
|
||||||
if (cpu != orig_cpu)
|
if (cpu != orig_cpu) {
|
||||||
|
/*
|
||||||
|
* Since we migrate the task without holding any rq->lock,
|
||||||
|
* we need to be careful with task_rq_lock(), since that
|
||||||
|
* might end up locking an invalid rq.
|
||||||
|
*/
|
||||||
set_task_cpu(p, cpu);
|
set_task_cpu(p, cpu);
|
||||||
|
}
|
||||||
|
|
||||||
rq = __task_rq_lock(p);
|
rq = cpu_rq(cpu);
|
||||||
|
raw_spin_lock(&rq->lock);
|
||||||
update_rq_clock(rq);
|
update_rq_clock(rq);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We migrated the task without holding either rq->lock, however
|
||||||
|
* since the task is not on the task list itself, nobody else
|
||||||
|
* will try and migrate the task, hence the rq should match the
|
||||||
|
* cpu we just moved it to.
|
||||||
|
*/
|
||||||
|
WARN_ON(task_cpu(p) != cpu);
|
||||||
WARN_ON(p->state != TASK_WAKING);
|
WARN_ON(p->state != TASK_WAKING);
|
||||||
cpu = task_cpu(p);
|
|
||||||
|
|
||||||
#ifdef CONFIG_SCHEDSTATS
|
#ifdef CONFIG_SCHEDSTATS
|
||||||
schedstat_inc(rq, ttwu_count);
|
schedstat_inc(rq, ttwu_count);
|
||||||
@ -2613,7 +2645,7 @@ void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
|
|||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
struct rq *rq;
|
struct rq *rq;
|
||||||
int cpu __maybe_unused = get_cpu();
|
int cpu = get_cpu();
|
||||||
|
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
/*
|
/*
|
||||||
@ -2629,7 +2661,13 @@ void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
|
|||||||
set_task_cpu(p, cpu);
|
set_task_cpu(p, cpu);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
rq = task_rq_lock(p, &flags);
|
/*
|
||||||
|
* Since the task is not on the rq and we still have TASK_WAKING set
|
||||||
|
* nobody else will migrate this task.
|
||||||
|
*/
|
||||||
|
rq = cpu_rq(cpu);
|
||||||
|
raw_spin_lock_irqsave(&rq->lock, flags);
|
||||||
|
|
||||||
BUG_ON(p->state != TASK_WAKING);
|
BUG_ON(p->state != TASK_WAKING);
|
||||||
p->state = TASK_RUNNING;
|
p->state = TASK_RUNNING;
|
||||||
update_rq_clock(rq);
|
update_rq_clock(rq);
|
||||||
@ -5302,27 +5340,8 @@ int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
|
|||||||
struct rq *rq;
|
struct rq *rq;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
/*
|
|
||||||
* Since we rely on wake-ups to migrate sleeping tasks, don't change
|
|
||||||
* the ->cpus_allowed mask from under waking tasks, which would be
|
|
||||||
* possible when we change rq->lock in ttwu(), so synchronize against
|
|
||||||
* TASK_WAKING to avoid that.
|
|
||||||
*
|
|
||||||
* Make an exception for freshly cloned tasks, since cpuset namespaces
|
|
||||||
* might move the task about, we have to validate the target in
|
|
||||||
* wake_up_new_task() anyway since the cpu might have gone away.
|
|
||||||
*/
|
|
||||||
again:
|
|
||||||
while (p->state == TASK_WAKING && !(p->flags & PF_STARTING))
|
|
||||||
cpu_relax();
|
|
||||||
|
|
||||||
rq = task_rq_lock(p, &flags);
|
rq = task_rq_lock(p, &flags);
|
||||||
|
|
||||||
if (p->state == TASK_WAKING && !(p->flags & PF_STARTING)) {
|
|
||||||
task_rq_unlock(rq, &flags);
|
|
||||||
goto again;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!cpumask_intersects(new_mask, cpu_active_mask)) {
|
if (!cpumask_intersects(new_mask, cpu_active_mask)) {
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto out;
|
goto out;
|
||||||
|
@ -2792,12 +2792,23 @@ find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
rq = cpu_rq(i);
|
rq = cpu_rq(i);
|
||||||
wl = weighted_cpuload(i) * SCHED_LOAD_SCALE;
|
wl = weighted_cpuload(i);
|
||||||
wl /= power;
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When comparing with imbalance, use weighted_cpuload()
|
||||||
|
* which is not scaled with the cpu power.
|
||||||
|
*/
|
||||||
if (capacity && rq->nr_running == 1 && wl > imbalance)
|
if (capacity && rq->nr_running == 1 && wl > imbalance)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* For the load comparisons with the other cpu's, consider
|
||||||
|
* the weighted_cpuload() scaled with the cpu power, so that
|
||||||
|
* the load can be moved away from the cpu that is potentially
|
||||||
|
* running at a lower capacity.
|
||||||
|
*/
|
||||||
|
wl = (wl * SCHED_LOAD_SCALE) / power;
|
||||||
|
|
||||||
if (wl > max_load) {
|
if (wl > max_load) {
|
||||||
max_load = wl;
|
max_load = wl;
|
||||||
busiest = rq;
|
busiest = rq;
|
||||||
|
Loading…
Reference in New Issue
Block a user