X-Git-Url: https://nv-tegra.nvidia.com/r/gitweb?p=linux-3.10.git;a=blobdiff_plain;f=kernel%2Fpower%2Fsmp.c;h=cba3584b80fefa88b3fdcb8d938800b08d44abeb;hp=7fa7f6e2b7fb68be1b382ef8db73daf7d46a7933;hb=43117a08280e40be43e181c51cce296ef4b4c7e5;hpb=bf2049f983eb47f9463d3dd54abd82e3e58846f9;ds=sidebyside diff --git a/kernel/power/smp.c b/kernel/power/smp.c index 7fa7f6e2b7f..cba3584b80f 100644 --- a/kernel/power/smp.c +++ b/kernel/power/smp.c @@ -46,13 +46,13 @@ static cpumask_t oldmask; void disable_nonboot_cpus(void) { - printk("Freezing CPUs (at %d)", smp_processor_id()); oldmask = current->cpus_allowed; set_cpus_allowed(current, cpumask_of_cpu(0)); + printk("Freezing CPUs (at %d)", _smp_processor_id()); current->state = TASK_INTERRUPTIBLE; schedule_timeout(HZ); printk("..."); - BUG_ON(smp_processor_id() != 0); + BUG_ON(_smp_processor_id() != 0); /* FIXME: for this to work, all the CPUs must be running * "idle" thread (or we deadlock). Is that guaranteed? */