aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched.c
diff options
context:
space:
mode:
authorMax Krasnyansky <maxk@qualcomm.com>2008-05-29 14:17:02 -0400
committerIngo Molnar <mingo@elte.hu>2008-06-06 09:25:01 -0400
commit68f4f1ec08e3d95730a2693b99df8260aa0d06ae (patch)
treec5deab621f545eac80fcec6608d68cddf6705032 /kernel/sched.c
parent5c8e1ed1d204a6770ca2854cd3b3597070fe7e5a (diff)
sched: Move cpu masks from kernel/sched.c into kernel/cpu.c
kernel/cpu.c seems a more logical place for those maps since they do not really have much to do with the scheduler these days. kernel/cpu.c is now built for the UP kernel too, but it does not affect the size the kernel sections. $ size vmlinux before text data bss dec hex filename 3313797 307060 310352 3931209 3bfc49 vmlinux after text data bss dec hex filename 3313797 307060 310352 3931209 3bfc49 vmlinux Signed-off-by: Max Krasnyansky <maxk@qualcomm.com> Cc: pj@sgi.com Cc: menage@google.com Cc: rostedt@goodmis.org Cc: mingo@elte.hu Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 1ddb0a8c7976..f36f549e5744 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -5080,24 +5080,6 @@ asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5080 return sched_setaffinity(pid, &new_mask); 5080 return sched_setaffinity(pid, &new_mask);
5081} 5081}
5082 5082
5083/*
5084 * Represents all cpu's present in the system
5085 * In systems capable of hotplug, this map could dynamically grow
5086 * as new cpu's are detected in the system via any platform specific
5087 * method, such as ACPI for e.g.
5088 */
5089
5090cpumask_t cpu_present_map __read_mostly;
5091EXPORT_SYMBOL(cpu_present_map);
5092
5093#ifndef CONFIG_SMP
5094cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
5095EXPORT_SYMBOL(cpu_online_map);
5096
5097cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
5098EXPORT_SYMBOL(cpu_possible_map);
5099#endif
5100
5101long sched_getaffinity(pid_t pid, cpumask_t *mask) 5083long sched_getaffinity(pid_t pid, cpumask_t *mask)
5102{ 5084{
5103 struct task_struct *p; 5085 struct task_struct *p;