sched: Fix cpupri build on !CONFIG_SMP
authorIngo Molnar <mingo@elte.hu>
Sat, 19 Apr 2008 10:11:10 +0000 (12:11 +0200)
committerIngo Molnar <mingo@elte.hu>
Sun, 2 Aug 2009 13:15:51 +0000 (15:15 +0200)
commitbcf08df3b23b3d13bf8c4ad6bd744a6ad30015fb
treec3c37cfa34a15c05a37bbacc7b67a2ffc19bc856
parent693525e3bea25cf2ee6cf2b862ba7c148e891df2
sched: Fix cpupri build on !CONFIG_SMP

This build bug:

 In file included from kernel/sched.c:1765:
 kernel/sched_rt.c: In function ‘has_pushable_tasks’:
 kernel/sched_rt.c:1069: error: ‘struct rt_rq’ has no member named ‘pushable_tasks’
 kernel/sched_rt.c: In function ‘pick_next_task_rt’:
 kernel/sched_rt.c:1084: error: ‘struct rq’ has no member named ‘post_schedule’

Triggers because both pushable_tasks and post_schedule are
SMP-only fields.

Move pushable_tasks() to the SMP section and #ifdef the post_schedule use.

Cc: Gregory Haskins <ghaskins@novell.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <20090729150422.17691.55590.stgit@dev.haskins.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched_rt.c