diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-06-05 06:25:37 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-06 09:19:46 -0400 |
commit | 1100ac91b6af02d8639d518fad5b434b1bf44ed6 (patch) | |
tree | 4eda0e913e8bc5437fad37b723f24eec2b4e8680 /kernel/sched_rt.c | |
parent | e539d8fcd11af811db70707d47ea436d5621d0da (diff) |
sched: fix cpuprio build bug
this patch was not built on !SMP:
kernel/sched_rt.c: In function 'inc_rt_tasks':
kernel/sched_rt.c:404: error: 'struct rq' has no member named 'online'
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched_rt.c')
-rw-r--r-- | kernel/sched_rt.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c index e4821593d4de..eaa606071d51 100644 --- a/kernel/sched_rt.c +++ b/kernel/sched_rt.c | |||
@@ -399,16 +399,19 @@ void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq) | |||
399 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED | 399 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
400 | if (rt_se_prio(rt_se) < rt_rq->highest_prio) { | 400 | if (rt_se_prio(rt_se) < rt_rq->highest_prio) { |
401 | struct rq *rq = rq_of_rt_rq(rt_rq); | 401 | struct rq *rq = rq_of_rt_rq(rt_rq); |
402 | rt_rq->highest_prio = rt_se_prio(rt_se); | ||
403 | 402 | ||
403 | rt_rq->highest_prio = rt_se_prio(rt_se); | ||
404 | #ifdef CONFIG_SMP | ||
404 | if (rq->online) | 405 | if (rq->online) |
405 | cpupri_set(&rq->rd->cpupri, rq->cpu, | 406 | cpupri_set(&rq->rd->cpupri, rq->cpu, |
406 | rt_se_prio(rt_se)); | 407 | rt_se_prio(rt_se)); |
408 | #endif | ||
407 | } | 409 | } |
408 | #endif | 410 | #endif |
409 | #ifdef CONFIG_SMP | 411 | #ifdef CONFIG_SMP |
410 | if (rt_se->nr_cpus_allowed > 1) { | 412 | if (rt_se->nr_cpus_allowed > 1) { |
411 | struct rq *rq = rq_of_rt_rq(rt_rq); | 413 | struct rq *rq = rq_of_rt_rq(rt_rq); |
414 | |||
412 | rq->rt.rt_nr_migratory++; | 415 | rq->rt.rt_nr_migratory++; |
413 | } | 416 | } |
414 | 417 | ||