aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/process.c')
-rw-r--r--arch/x86/kernel/process.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index 6638294cec8d..78533a519d8f 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -479,7 +479,8 @@ static int c1e_detected;
479 479
480void c1e_remove_cpu(int cpu) 480void c1e_remove_cpu(int cpu)
481{ 481{
482 cpumask_clear_cpu(cpu, c1e_mask); 482 if (c1e_mask != NULL)
483 cpumask_clear_cpu(cpu, c1e_mask);
483} 484}
484 485
485/* 486/*
@@ -556,13 +557,20 @@ void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c)
556 pm_idle = mwait_idle; 557 pm_idle = mwait_idle;
557 } else if (check_c1e_idle(c)) { 558 } else if (check_c1e_idle(c)) {
558 printk(KERN_INFO "using C1E aware idle routine\n"); 559 printk(KERN_INFO "using C1E aware idle routine\n");
559 alloc_cpumask_var(&c1e_mask, GFP_KERNEL);
560 cpumask_clear(c1e_mask);
561 pm_idle = c1e_idle; 560 pm_idle = c1e_idle;
562 } else 561 } else
563 pm_idle = default_idle; 562 pm_idle = default_idle;
564} 563}
565 564
565void __init init_c1e_mask(void)
566{
567 /* If we're using c1e_idle, we need to allocate c1e_mask. */
568 if (pm_idle == c1e_idle) {
569 alloc_cpumask_var(&c1e_mask, GFP_KERNEL);
570 cpumask_clear(c1e_mask);
571 }
572}
573
566static int __init idle_setup(char *str) 574static int __init idle_setup(char *str)
567{ 575{
568 if (!str) 576 if (!str)