Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=67af63a6ab4ce064f807bdce614fe0fa2bcea252
Commit:     67af63a6ab4ce064f807bdce614fe0fa2bcea252
Parent:     132e2bc3ee7181c178314ced49da9944b76411c2
Author:     Tim Chen <[EMAIL PROTECTED]>
AuthorDate: Fri Dec 22 01:07:50 2006 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Fri Dec 22 08:55:47 2006 -0800

    [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 <[EMAIL PROTECTED]>
    Acked-by: Suresh Siddha <[EMAIL PROTECTED]>
    Acked-by: Ingo Molnar <[EMAIL PROTECTED]>
    Cc: <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 kernel/sched.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index 850bde4..b515e3c 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -5610,7 +5610,7 @@ static void cpu_attach_domain(struct sched_domain *sd, 
int cpu)
 }
 
 /* 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 git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to