The patch titled
     sched: remove __cpuinitdata anotation to cpu_isolated_map
has been added to the -mm tree.  Its filename is
     sched-remove-__cpuinitdata-anotation-to-cpu_isolated_map.patch

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: sched: remove __cpuinitdata anotation to cpu_isolated_map
From: Tim Chen <[EMAIL PROTECTED]>

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 <[EMAIL PROTECTED]>
Acked-by: Suresh Siddha <[EMAIL PROTECTED]>
Acked-by: Ingo Molnar <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 kernel/sched.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN 
kernel/sched.c~sched-remove-__cpuinitdata-anotation-to-cpu_isolated_map 
kernel/sched.c
--- a/kernel/sched.c~sched-remove-__cpuinitdata-anotation-to-cpu_isolated_map
+++ a/kernel/sched.c
@@ -5609,7 +5609,7 @@ static void cpu_attach_domain(struct sch
 }
 
 /* cpus with isolated domains */
-static cpumask_t __cpuinitdata cpu_isolated_map = CPU_MASK_NONE;
+static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
 
 /* Setup the mask of cpus configured for isolated domains */
 static int __init isolated_cpu_setup(char *str)
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

sched-remove-__cpuinitdata-anotation-to-cpu_isolated_map.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to