diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-06-04 21:22:32 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-06 13:25:02 (GMT) |
commit | e958b3600484533ff801920290468adc8135f89d (patch) | |
tree | 09a1febbfdc467a5d73f4dee458785acc3b809b1 /kernel | |
parent | 68f4f1ec08e3d95730a2693b99df8260aa0d06ae (diff) | |
download | linux-e958b3600484533ff801920290468adc8135f89d.tar.xz |
sched: move weighted_cpuload into #ifdef CONFIG_SMP section
weighted_cpuload is only used on SMP. move it into the CONFIG_SMP
section.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index f36f549..727bdef 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -1637,12 +1637,6 @@ inline int task_curr(const struct task_struct *p) return cpu_curr(task_cpu(p)) == p; } -/* Used instead of source_load when we know the type == 0 */ -static unsigned long weighted_cpuload(const int cpu) -{ - return cpu_rq(cpu)->load.weight; -} - static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) { set_task_rq(p, cpu); @@ -1671,6 +1665,12 @@ static inline void check_class_changed(struct rq *rq, struct task_struct *p, #ifdef CONFIG_SMP +/* Used instead of source_load when we know the type == 0 */ +static unsigned long weighted_cpuload(const int cpu) +{ + return cpu_rq(cpu)->load.weight; +} + /* * Is this task likely cache-hot: */ |