summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/sched.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 0df69866a04e..c9e3ab6e299e 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -793,14 +793,18 @@ static inline struct task_group *task_group(struct task_struct *p)
793/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */ 793/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
794static inline void set_task_rq(struct task_struct *p, unsigned int cpu) 794static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
795{ 795{
796#if defined(CONFIG_FAIR_GROUP_SCHED) || defined(CONFIG_RT_GROUP_SCHED)
797 struct task_group *tg = task_group(p);
798#endif
799
796#ifdef CONFIG_FAIR_GROUP_SCHED 800#ifdef CONFIG_FAIR_GROUP_SCHED
797 p->se.cfs_rq = task_group(p)->cfs_rq[cpu]; 801 p->se.cfs_rq = tg->cfs_rq[cpu];
798 p->se.parent = task_group(p)->se[cpu]; 802 p->se.parent = tg->se[cpu];
799#endif 803#endif
800 804
801#ifdef CONFIG_RT_GROUP_SCHED 805#ifdef CONFIG_RT_GROUP_SCHED
802 p->rt.rt_rq = task_group(p)->rt_rq[cpu]; 806 p->rt.rt_rq = tg->rt_rq[cpu];
803 p->rt.parent = task_group(p)->rt_se[cpu]; 807 p->rt.parent = tg->rt_se[cpu];
804#endif 808#endif
805} 809}
806 810