|
@@ -173,7 +173,7 @@ static struct rq *this_rq_lock(void)
|
|
/*
|
|
/*
|
|
* __task_rq_lock - lock the rq @p resides on.
|
|
* __task_rq_lock - lock the rq @p resides on.
|
|
*/
|
|
*/
|
|
-struct rq *__task_rq_lock(struct task_struct *p)
|
|
|
|
|
|
+struct rq *__task_rq_lock(struct task_struct *p, struct rq_flags *rf)
|
|
__acquires(rq->lock)
|
|
__acquires(rq->lock)
|
|
{
|
|
{
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
@@ -197,14 +197,14 @@ struct rq *__task_rq_lock(struct task_struct *p)
|
|
/*
|
|
/*
|
|
* task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
|
|
* task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
|
|
*/
|
|
*/
|
|
-struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
|
|
|
|
|
|
+struct rq *task_rq_lock(struct task_struct *p, struct rq_flags *rf)
|
|
__acquires(p->pi_lock)
|
|
__acquires(p->pi_lock)
|
|
__acquires(rq->lock)
|
|
__acquires(rq->lock)
|
|
{
|
|
{
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
|
|
|
|
for (;;) {
|
|
for (;;) {
|
|
- raw_spin_lock_irqsave(&p->pi_lock, *flags);
|
|
|
|
|
|
+ raw_spin_lock_irqsave(&p->pi_lock, rf->flags);
|
|
rq = task_rq(p);
|
|
rq = task_rq(p);
|
|
raw_spin_lock(&rq->lock);
|
|
raw_spin_lock(&rq->lock);
|
|
/*
|
|
/*
|
|
@@ -228,7 +228,7 @@ struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
|
|
return rq;
|
|
return rq;
|
|
}
|
|
}
|
|
raw_spin_unlock(&rq->lock);
|
|
raw_spin_unlock(&rq->lock);
|
|
- raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
|
|
|
|
|
|
+ raw_spin_unlock_irqrestore(&p->pi_lock, rf->flags);
|
|
|
|
|
|
while (unlikely(task_on_rq_migrating(p)))
|
|
while (unlikely(task_on_rq_migrating(p)))
|
|
cpu_relax();
|
|
cpu_relax();
|
|
@@ -1150,12 +1150,12 @@ void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
|
|
static int __set_cpus_allowed_ptr(struct task_struct *p,
|
|
static int __set_cpus_allowed_ptr(struct task_struct *p,
|
|
const struct cpumask *new_mask, bool check)
|
|
const struct cpumask *new_mask, bool check)
|
|
{
|
|
{
|
|
- unsigned long flags;
|
|
|
|
- struct rq *rq;
|
|
|
|
unsigned int dest_cpu;
|
|
unsigned int dest_cpu;
|
|
|
|
+ struct rq_flags rf;
|
|
|
|
+ struct rq *rq;
|
|
int ret = 0;
|
|
int ret = 0;
|
|
|
|
|
|
- rq = task_rq_lock(p, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(p, &rf);
|
|
|
|
|
|
/*
|
|
/*
|
|
* Must re-check here, to close a race against __kthread_bind(),
|
|
* Must re-check here, to close a race against __kthread_bind(),
|
|
@@ -1184,7 +1184,7 @@ static int __set_cpus_allowed_ptr(struct task_struct *p,
|
|
if (task_running(rq, p) || p->state == TASK_WAKING) {
|
|
if (task_running(rq, p) || p->state == TASK_WAKING) {
|
|
struct migration_arg arg = { p, dest_cpu };
|
|
struct migration_arg arg = { p, dest_cpu };
|
|
/* Need help from migration thread: drop lock and wait. */
|
|
/* Need help from migration thread: drop lock and wait. */
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
|
|
stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
|
|
tlb_migrate_finish(p->mm);
|
|
tlb_migrate_finish(p->mm);
|
|
return 0;
|
|
return 0;
|
|
@@ -1198,7 +1198,7 @@ static int __set_cpus_allowed_ptr(struct task_struct *p,
|
|
lockdep_pin_lock(&rq->lock);
|
|
lockdep_pin_lock(&rq->lock);
|
|
}
|
|
}
|
|
out:
|
|
out:
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
|
|
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
@@ -1382,8 +1382,8 @@ out:
|
|
*/
|
|
*/
|
|
unsigned long wait_task_inactive(struct task_struct *p, long match_state)
|
|
unsigned long wait_task_inactive(struct task_struct *p, long match_state)
|
|
{
|
|
{
|
|
- unsigned long flags;
|
|
|
|
int running, queued;
|
|
int running, queued;
|
|
|
|
+ struct rq_flags rf;
|
|
unsigned long ncsw;
|
|
unsigned long ncsw;
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
|
|
|
|
@@ -1418,14 +1418,14 @@ unsigned long wait_task_inactive(struct task_struct *p, long match_state)
|
|
* lock now, to be *sure*. If we're wrong, we'll
|
|
* lock now, to be *sure*. If we're wrong, we'll
|
|
* just go back and repeat.
|
|
* just go back and repeat.
|
|
*/
|
|
*/
|
|
- rq = task_rq_lock(p, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(p, &rf);
|
|
trace_sched_wait_task(p);
|
|
trace_sched_wait_task(p);
|
|
running = task_running(rq, p);
|
|
running = task_running(rq, p);
|
|
queued = task_on_rq_queued(p);
|
|
queued = task_on_rq_queued(p);
|
|
ncsw = 0;
|
|
ncsw = 0;
|
|
if (!match_state || p->state == match_state)
|
|
if (!match_state || p->state == match_state)
|
|
ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
|
|
ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
|
|
|
|
/*
|
|
/*
|
|
* If it changed from the expected state, bail out now.
|
|
* If it changed from the expected state, bail out now.
|
|
@@ -1723,17 +1723,18 @@ ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
|
|
*/
|
|
*/
|
|
static int ttwu_remote(struct task_struct *p, int wake_flags)
|
|
static int ttwu_remote(struct task_struct *p, int wake_flags)
|
|
{
|
|
{
|
|
|
|
+ struct rq_flags rf;
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
int ret = 0;
|
|
int ret = 0;
|
|
|
|
|
|
- rq = __task_rq_lock(p);
|
|
|
|
|
|
+ rq = __task_rq_lock(p, &rf);
|
|
if (task_on_rq_queued(p)) {
|
|
if (task_on_rq_queued(p)) {
|
|
/* check_preempt_curr() may use rq clock */
|
|
/* check_preempt_curr() may use rq clock */
|
|
update_rq_clock(rq);
|
|
update_rq_clock(rq);
|
|
ttwu_do_wakeup(rq, p, wake_flags);
|
|
ttwu_do_wakeup(rq, p, wake_flags);
|
|
ret = 1;
|
|
ret = 1;
|
|
}
|
|
}
|
|
- __task_rq_unlock(rq);
|
|
|
|
|
|
+ __task_rq_unlock(rq, &rf);
|
|
|
|
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
@@ -2486,12 +2487,12 @@ extern void init_dl_bw(struct dl_bw *dl_b);
|
|
*/
|
|
*/
|
|
void wake_up_new_task(struct task_struct *p)
|
|
void wake_up_new_task(struct task_struct *p)
|
|
{
|
|
{
|
|
- unsigned long flags;
|
|
|
|
|
|
+ struct rq_flags rf;
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
|
|
|
|
- raw_spin_lock_irqsave(&p->pi_lock, flags);
|
|
|
|
/* Initialize new task's runnable average */
|
|
/* Initialize new task's runnable average */
|
|
init_entity_runnable_average(&p->se);
|
|
init_entity_runnable_average(&p->se);
|
|
|
|
+ raw_spin_lock_irqsave(&p->pi_lock, rf.flags);
|
|
#ifdef CONFIG_SMP
|
|
#ifdef CONFIG_SMP
|
|
/*
|
|
/*
|
|
* Fork balancing, do it here and not earlier because:
|
|
* Fork balancing, do it here and not earlier because:
|
|
@@ -2503,7 +2504,7 @@ void wake_up_new_task(struct task_struct *p)
|
|
/* Post initialize new task's util average when its cfs_rq is set */
|
|
/* Post initialize new task's util average when its cfs_rq is set */
|
|
post_init_entity_util_avg(&p->se);
|
|
post_init_entity_util_avg(&p->se);
|
|
|
|
|
|
- rq = __task_rq_lock(p);
|
|
|
|
|
|
+ rq = __task_rq_lock(p, &rf);
|
|
activate_task(rq, p, 0);
|
|
activate_task(rq, p, 0);
|
|
p->on_rq = TASK_ON_RQ_QUEUED;
|
|
p->on_rq = TASK_ON_RQ_QUEUED;
|
|
trace_sched_wakeup_new(p);
|
|
trace_sched_wakeup_new(p);
|
|
@@ -2519,7 +2520,7 @@ void wake_up_new_task(struct task_struct *p)
|
|
lockdep_pin_lock(&rq->lock);
|
|
lockdep_pin_lock(&rq->lock);
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_PREEMPT_NOTIFIERS
|
|
#ifdef CONFIG_PREEMPT_NOTIFIERS
|
|
@@ -2935,7 +2936,7 @@ EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
|
|
*/
|
|
*/
|
|
unsigned long long task_sched_runtime(struct task_struct *p)
|
|
unsigned long long task_sched_runtime(struct task_struct *p)
|
|
{
|
|
{
|
|
- unsigned long flags;
|
|
|
|
|
|
+ struct rq_flags rf;
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
u64 ns;
|
|
u64 ns;
|
|
|
|
|
|
@@ -2955,7 +2956,7 @@ unsigned long long task_sched_runtime(struct task_struct *p)
|
|
return p->se.sum_exec_runtime;
|
|
return p->se.sum_exec_runtime;
|
|
#endif
|
|
#endif
|
|
|
|
|
|
- rq = task_rq_lock(p, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(p, &rf);
|
|
/*
|
|
/*
|
|
* Must be ->curr _and_ ->on_rq. If dequeued, we would
|
|
* Must be ->curr _and_ ->on_rq. If dequeued, we would
|
|
* project cycles that may never be accounted to this
|
|
* project cycles that may never be accounted to this
|
|
@@ -2966,7 +2967,7 @@ unsigned long long task_sched_runtime(struct task_struct *p)
|
|
p->sched_class->update_curr(rq);
|
|
p->sched_class->update_curr(rq);
|
|
}
|
|
}
|
|
ns = p->se.sum_exec_runtime;
|
|
ns = p->se.sum_exec_runtime;
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
|
|
|
|
return ns;
|
|
return ns;
|
|
}
|
|
}
|
|
@@ -3524,12 +3525,13 @@ EXPORT_SYMBOL(default_wake_function);
|
|
void rt_mutex_setprio(struct task_struct *p, int prio)
|
|
void rt_mutex_setprio(struct task_struct *p, int prio)
|
|
{
|
|
{
|
|
int oldprio, queued, running, queue_flag = DEQUEUE_SAVE | DEQUEUE_MOVE;
|
|
int oldprio, queued, running, queue_flag = DEQUEUE_SAVE | DEQUEUE_MOVE;
|
|
- struct rq *rq;
|
|
|
|
const struct sched_class *prev_class;
|
|
const struct sched_class *prev_class;
|
|
|
|
+ struct rq_flags rf;
|
|
|
|
+ struct rq *rq;
|
|
|
|
|
|
BUG_ON(prio > MAX_PRIO);
|
|
BUG_ON(prio > MAX_PRIO);
|
|
|
|
|
|
- rq = __task_rq_lock(p);
|
|
|
|
|
|
+ rq = __task_rq_lock(p, &rf);
|
|
|
|
|
|
/*
|
|
/*
|
|
* Idle task boosting is a nono in general. There is one
|
|
* Idle task boosting is a nono in general. There is one
|
|
@@ -3605,7 +3607,7 @@ void rt_mutex_setprio(struct task_struct *p, int prio)
|
|
check_class_changed(rq, p, prev_class, oldprio);
|
|
check_class_changed(rq, p, prev_class, oldprio);
|
|
out_unlock:
|
|
out_unlock:
|
|
preempt_disable(); /* avoid rq from going away on us */
|
|
preempt_disable(); /* avoid rq from going away on us */
|
|
- __task_rq_unlock(rq);
|
|
|
|
|
|
+ __task_rq_unlock(rq, &rf);
|
|
|
|
|
|
balance_callback(rq);
|
|
balance_callback(rq);
|
|
preempt_enable();
|
|
preempt_enable();
|
|
@@ -3615,7 +3617,7 @@ out_unlock:
|
|
void set_user_nice(struct task_struct *p, long nice)
|
|
void set_user_nice(struct task_struct *p, long nice)
|
|
{
|
|
{
|
|
int old_prio, delta, queued;
|
|
int old_prio, delta, queued;
|
|
- unsigned long flags;
|
|
|
|
|
|
+ struct rq_flags rf;
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
|
|
|
|
if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
|
|
if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
|
|
@@ -3624,7 +3626,7 @@ void set_user_nice(struct task_struct *p, long nice)
|
|
* We have to be careful, if called from sys_setpriority(),
|
|
* We have to be careful, if called from sys_setpriority(),
|
|
* the task might be in the middle of scheduling on another CPU.
|
|
* the task might be in the middle of scheduling on another CPU.
|
|
*/
|
|
*/
|
|
- rq = task_rq_lock(p, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(p, &rf);
|
|
/*
|
|
/*
|
|
* The RT priorities are set via sched_setscheduler(), but we still
|
|
* The RT priorities are set via sched_setscheduler(), but we still
|
|
* allow the 'normal' nice value to be set - but as expected
|
|
* allow the 'normal' nice value to be set - but as expected
|
|
@@ -3655,7 +3657,7 @@ void set_user_nice(struct task_struct *p, long nice)
|
|
resched_curr(rq);
|
|
resched_curr(rq);
|
|
}
|
|
}
|
|
out_unlock:
|
|
out_unlock:
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL(set_user_nice);
|
|
EXPORT_SYMBOL(set_user_nice);
|
|
|
|
|
|
@@ -3952,11 +3954,11 @@ static int __sched_setscheduler(struct task_struct *p,
|
|
MAX_RT_PRIO - 1 - attr->sched_priority;
|
|
MAX_RT_PRIO - 1 - attr->sched_priority;
|
|
int retval, oldprio, oldpolicy = -1, queued, running;
|
|
int retval, oldprio, oldpolicy = -1, queued, running;
|
|
int new_effective_prio, policy = attr->sched_policy;
|
|
int new_effective_prio, policy = attr->sched_policy;
|
|
- unsigned long flags;
|
|
|
|
const struct sched_class *prev_class;
|
|
const struct sched_class *prev_class;
|
|
- struct rq *rq;
|
|
|
|
|
|
+ struct rq_flags rf;
|
|
int reset_on_fork;
|
|
int reset_on_fork;
|
|
int queue_flags = DEQUEUE_SAVE | DEQUEUE_MOVE;
|
|
int queue_flags = DEQUEUE_SAVE | DEQUEUE_MOVE;
|
|
|
|
+ struct rq *rq;
|
|
|
|
|
|
/* may grab non-irq protected spin_locks */
|
|
/* may grab non-irq protected spin_locks */
|
|
BUG_ON(in_interrupt());
|
|
BUG_ON(in_interrupt());
|
|
@@ -4051,13 +4053,13 @@ recheck:
|
|
* To be able to change p->policy safely, the appropriate
|
|
* To be able to change p->policy safely, the appropriate
|
|
* runqueue lock must be held.
|
|
* runqueue lock must be held.
|
|
*/
|
|
*/
|
|
- rq = task_rq_lock(p, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(p, &rf);
|
|
|
|
|
|
/*
|
|
/*
|
|
* Changing the policy of the stop threads its a very bad idea
|
|
* Changing the policy of the stop threads its a very bad idea
|
|
*/
|
|
*/
|
|
if (p == rq->stop) {
|
|
if (p == rq->stop) {
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -4074,7 +4076,7 @@ recheck:
|
|
goto change;
|
|
goto change;
|
|
|
|
|
|
p->sched_reset_on_fork = reset_on_fork;
|
|
p->sched_reset_on_fork = reset_on_fork;
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
change:
|
|
change:
|
|
@@ -4088,7 +4090,7 @@ change:
|
|
if (rt_bandwidth_enabled() && rt_policy(policy) &&
|
|
if (rt_bandwidth_enabled() && rt_policy(policy) &&
|
|
task_group(p)->rt_bandwidth.rt_runtime == 0 &&
|
|
task_group(p)->rt_bandwidth.rt_runtime == 0 &&
|
|
!task_group_is_autogroup(task_group(p))) {
|
|
!task_group_is_autogroup(task_group(p))) {
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
return -EPERM;
|
|
return -EPERM;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
@@ -4103,7 +4105,7 @@ change:
|
|
*/
|
|
*/
|
|
if (!cpumask_subset(span, &p->cpus_allowed) ||
|
|
if (!cpumask_subset(span, &p->cpus_allowed) ||
|
|
rq->rd->dl_bw.bw == 0) {
|
|
rq->rd->dl_bw.bw == 0) {
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
return -EPERM;
|
|
return -EPERM;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -4113,7 +4115,7 @@ change:
|
|
/* recheck policy now with rq lock held */
|
|
/* recheck policy now with rq lock held */
|
|
if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
|
|
if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
|
|
policy = oldpolicy = -1;
|
|
policy = oldpolicy = -1;
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
goto recheck;
|
|
goto recheck;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -4123,7 +4125,7 @@ change:
|
|
* is available.
|
|
* is available.
|
|
*/
|
|
*/
|
|
if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
|
|
if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
return -EBUSY;
|
|
return -EBUSY;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -4168,7 +4170,7 @@ change:
|
|
|
|
|
|
check_class_changed(rq, p, prev_class, oldprio);
|
|
check_class_changed(rq, p, prev_class, oldprio);
|
|
preempt_disable(); /* avoid rq from going away on us */
|
|
preempt_disable(); /* avoid rq from going away on us */
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
|
|
|
|
if (pi)
|
|
if (pi)
|
|
rt_mutex_adjust_pi(p);
|
|
rt_mutex_adjust_pi(p);
|
|
@@ -5021,10 +5023,10 @@ SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
|
|
{
|
|
{
|
|
struct task_struct *p;
|
|
struct task_struct *p;
|
|
unsigned int time_slice;
|
|
unsigned int time_slice;
|
|
- unsigned long flags;
|
|
|
|
|
|
+ struct rq_flags rf;
|
|
|
|
+ struct timespec t;
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
int retval;
|
|
int retval;
|
|
- struct timespec t;
|
|
|
|
|
|
|
|
if (pid < 0)
|
|
if (pid < 0)
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
@@ -5039,11 +5041,11 @@ SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
|
|
if (retval)
|
|
if (retval)
|
|
goto out_unlock;
|
|
goto out_unlock;
|
|
|
|
|
|
- rq = task_rq_lock(p, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(p, &rf);
|
|
time_slice = 0;
|
|
time_slice = 0;
|
|
if (p->sched_class->get_rr_interval)
|
|
if (p->sched_class->get_rr_interval)
|
|
time_slice = p->sched_class->get_rr_interval(rq, p);
|
|
time_slice = p->sched_class->get_rr_interval(rq, p);
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
|
|
|
|
rcu_read_unlock();
|
|
rcu_read_unlock();
|
|
jiffies_to_timespec(time_slice, &t);
|
|
jiffies_to_timespec(time_slice, &t);
|
|
@@ -5307,11 +5309,11 @@ int migrate_task_to(struct task_struct *p, int target_cpu)
|
|
*/
|
|
*/
|
|
void sched_setnuma(struct task_struct *p, int nid)
|
|
void sched_setnuma(struct task_struct *p, int nid)
|
|
{
|
|
{
|
|
- struct rq *rq;
|
|
|
|
- unsigned long flags;
|
|
|
|
bool queued, running;
|
|
bool queued, running;
|
|
|
|
+ struct rq_flags rf;
|
|
|
|
+ struct rq *rq;
|
|
|
|
|
|
- rq = task_rq_lock(p, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(p, &rf);
|
|
queued = task_on_rq_queued(p);
|
|
queued = task_on_rq_queued(p);
|
|
running = task_current(rq, p);
|
|
running = task_current(rq, p);
|
|
|
|
|
|
@@ -5326,7 +5328,7 @@ void sched_setnuma(struct task_struct *p, int nid)
|
|
p->sched_class->set_curr_task(rq);
|
|
p->sched_class->set_curr_task(rq);
|
|
if (queued)
|
|
if (queued)
|
|
enqueue_task(rq, p, ENQUEUE_RESTORE);
|
|
enqueue_task(rq, p, ENQUEUE_RESTORE);
|
|
- task_rq_unlock(rq, p, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, p, &rf);
|
|
}
|
|
}
|
|
#endif /* CONFIG_NUMA_BALANCING */
|
|
#endif /* CONFIG_NUMA_BALANCING */
|
|
|
|
|
|
@@ -7757,10 +7759,10 @@ void sched_move_task(struct task_struct *tsk)
|
|
{
|
|
{
|
|
struct task_group *tg;
|
|
struct task_group *tg;
|
|
int queued, running;
|
|
int queued, running;
|
|
- unsigned long flags;
|
|
|
|
|
|
+ struct rq_flags rf;
|
|
struct rq *rq;
|
|
struct rq *rq;
|
|
|
|
|
|
- rq = task_rq_lock(tsk, &flags);
|
|
|
|
|
|
+ rq = task_rq_lock(tsk, &rf);
|
|
|
|
|
|
running = task_current(rq, tsk);
|
|
running = task_current(rq, tsk);
|
|
queued = task_on_rq_queued(tsk);
|
|
queued = task_on_rq_queued(tsk);
|
|
@@ -7792,7 +7794,7 @@ void sched_move_task(struct task_struct *tsk)
|
|
if (queued)
|
|
if (queued)
|
|
enqueue_task(rq, tsk, ENQUEUE_RESTORE | ENQUEUE_MOVE);
|
|
enqueue_task(rq, tsk, ENQUEUE_RESTORE | ENQUEUE_MOVE);
|
|
|
|
|
|
- task_rq_unlock(rq, tsk, &flags);
|
|
|
|
|
|
+ task_rq_unlock(rq, tsk, &rf);
|
|
}
|
|
}
|
|
#endif /* CONFIG_CGROUP_SCHED */
|
|
#endif /* CONFIG_CGROUP_SCHED */
|
|
|
|
|