summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorAlexander Nyberg2005-04-17 00:25:39 +0200
committerLinus Torvalds2005-04-17 00:25:39 +0200
commit43117a08280e40be43e181c51cce296ef4b4c7e5 (patch)
tree88b50248e7a9b690c44fd7ab5e7b3989534bc552 /kernel
parent[PATCH] fix few remaining u32 vs. pm_message_t problems (diff)
downloadkernel-qcow2-linux-43117a08280e40be43e181c51cce296ef4b4c7e5.tar.gz
kernel-qcow2-linux-43117a08280e40be43e181c51cce296ef4b4c7e5.tar.xz
kernel-qcow2-linux-43117a08280e40be43e181c51cce296ef4b4c7e5.zip
[PATCH] swsusp: SMP fix
Fix some smp_processor_id-in-preemptible warnings Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/power/smp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/power/smp.c b/kernel/power/smp.c
index 7fa7f6e2b7fb..cba3584b80fe 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? */