diff options
author | Tim Chen <tim.c.chen@linux.intel.com> | 2006-12-22 04:07:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-22 11:55:47 -0500 |
commit | 67af63a6ab4ce064f807bdce614fe0fa2bcea252 (patch) | |
tree | dc9431e230073f977181ce7d4f697bcbe06d73e6 /kernel | |
parent | 132e2bc3ee7181c178314ced49da9944b76411c2 (diff) |
[PATCH] sched: remove __cpuinitdata anotation to cpu_isolated_map
The structure cpu_isolated_map is used not only during initialization.
Multi-core scheduler configuration changes and exclusive cpusets
use this during run time. During setting of sched_mc_power_savings
policy, this structure is accessed to update sched_domains.
Signed-off-by: Tim Chen <tim.c.chen@intel.com>
Acked-by: Suresh Siddha <suresh.b.siddha@intel.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-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 850bde4b31a2..b515e3caad7f 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -5610,7 +5610,7 @@ static void cpu_attach_domain(struct sched_domain *sd, int cpu) | |||
5610 | } | 5610 | } |
5611 | 5611 | ||
5612 | /* cpus with isolated domains */ | 5612 | /* cpus with isolated domains */ |
5613 | static cpumask_t __cpuinitdata cpu_isolated_map = CPU_MASK_NONE; | 5613 | static cpumask_t cpu_isolated_map = CPU_MASK_NONE; |
5614 | 5614 | ||
5615 | /* Setup the mask of cpus configured for isolated domains */ | 5615 | /* Setup the mask of cpus configured for isolated domains */ |
5616 | static int __init isolated_cpu_setup(char *str) | 5616 | static int __init isolated_cpu_setup(char *str) |