[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1166048278.6772.20.camel@localhost.localdomain>
Date: Wed, 13 Dec 2006 14:17:58 -0800
From: Tim Chen <tim.c.chen@...ux.intel.com>
To: linux-kernel@...r.kernel.org
Cc: suresh.b.siddha@...el.com
Subject: [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.
Thanks.
Tim Chen
Signed-off-by: Tim Chen <tim.c.chen@...el.com>
Acked-by: Suresh Siddha <suresh.b.siddha@...el.com>
diff --git a/kernel/sched.c b/kernel/sched.c
index f385eff..3de0deb 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -5510,7 +5510,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)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists