diff options
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index f6a81061fd50..3209e2cc2c2e 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -189,11 +189,11 @@ struct cfs_rq { | |||
189 | struct rb_root tasks_timeline; | 189 | struct rb_root tasks_timeline; |
190 | struct rb_node *rb_leftmost; | 190 | struct rb_node *rb_leftmost; |
191 | struct rb_node *rb_load_balance_curr; | 191 | struct rb_node *rb_load_balance_curr; |
192 | #ifdef CONFIG_FAIR_GROUP_SCHED | ||
193 | /* 'curr' points to currently running entity on this cfs_rq. | 192 | /* 'curr' points to currently running entity on this cfs_rq. |
194 | * It is set to NULL otherwise (i.e when none are currently running). | 193 | * It is set to NULL otherwise (i.e when none are currently running). |
195 | */ | 194 | */ |
196 | struct sched_entity *curr; | 195 | struct sched_entity *curr; |
196 | #ifdef CONFIG_FAIR_GROUP_SCHED | ||
197 | struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ | 197 | struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ |
198 | 198 | ||
199 | /* leaf cfs_rqs are those that hold tasks (lowest schedulable entity in | 199 | /* leaf cfs_rqs are those that hold tasks (lowest schedulable entity in |