diff options
| author | Rafael J. Wysocki <rjw@sisk.pl> | 2006-09-26 02:32:48 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-26 11:48:59 -0400 |
| commit | e3920fb42c8ddfe63befb54d95c0e13eabacea9b (patch) | |
| tree | 08371a71e58e6e9d3ec62dfa6a22b3b5e6ff0fd5 /kernel/power | |
| parent | e8eff5ac294e12531c4195e0c15a222d3c9015e5 (diff) | |
[PATCH] Disable CPU hotplug during suspend
The current suspend code has to be run on one CPU, so we use the CPU
hotplug to take the non-boot CPUs offline on SMP machines. However, we
should also make sure that these CPUs will not be enabled by someone else
after we have disabled them.
The functions disable_nonboot_cpus() and enable_nonboot_cpus() are moved to
kernel/cpu.c, because they now refer to some stuff in there that should
better be static. Also it's better if disable_nonboot_cpus() returns an
error instead of panicking if something goes wrong, and
enable_nonboot_cpus() has no reason to panic(), because the CPUs may have
been enabled by the userland before it tries to take them online.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/power')
| -rw-r--r-- | kernel/power/Makefile | 2 | ||||
| -rw-r--r-- | kernel/power/disk.c | 7 | ||||
| -rw-r--r-- | kernel/power/main.c | 10 | ||||
| -rw-r--r-- | kernel/power/smp.c | 62 | ||||
| -rw-r--r-- | kernel/power/user.c | 14 |
5 files changed, 19 insertions, 76 deletions
diff --git a/kernel/power/Makefile b/kernel/power/Makefile index 8d0af3d37a4..38725f526af 100644 --- a/kernel/power/Makefile +++ b/kernel/power/Makefile | |||
| @@ -7,6 +7,4 @@ obj-y := main.o process.o console.o | |||
| 7 | obj-$(CONFIG_PM_LEGACY) += pm.o | 7 | obj-$(CONFIG_PM_LEGACY) += pm.o |
| 8 | obj-$(CONFIG_SOFTWARE_SUSPEND) += swsusp.o disk.o snapshot.o swap.o user.o | 8 | obj-$(CONFIG_SOFTWARE_SUSPEND) += swsusp.o disk.o snapshot.o swap.o user.o |
| 9 | 9 | ||
| 10 | obj-$(CONFIG_SUSPEND_SMP) += smp.o | ||
| 11 | |||
| 12 | obj-$(CONFIG_MAGIC_SYSRQ) += poweroff.o | 10 | obj-$(CONFIG_MAGIC_SYSRQ) += poweroff.o |
diff --git a/kernel/power/disk.c b/kernel/power/disk.c index e13e7406784..7c7b9b65e36 100644 --- a/kernel/power/disk.c +++ b/kernel/power/disk.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/fs.h> | 18 | #include <linux/fs.h> |
| 19 | #include <linux/mount.h> | 19 | #include <linux/mount.h> |
| 20 | #include <linux/pm.h> | 20 | #include <linux/pm.h> |
| 21 | #include <linux/cpu.h> | ||
| 21 | 22 | ||
| 22 | #include "power.h" | 23 | #include "power.h" |
| 23 | 24 | ||
| @@ -72,7 +73,10 @@ static int prepare_processes(void) | |||
| 72 | int error; | 73 | int error; |
| 73 | 74 | ||
| 74 | pm_prepare_console(); | 75 | pm_prepare_console(); |
| 75 | disable_nonboot_cpus(); | 76 | |
| 77 | error = disable_nonboot_cpus(); | ||
| 78 | if (error) | ||
| 79 | goto enable_cpus; | ||
| 76 | 80 | ||
| 77 | if (freeze_processes()) { | 81 | if (freeze_processes()) { |
| 78 | error = -EBUSY; | 82 | error = -EBUSY; |
| @@ -84,6 +88,7 @@ static int prepare_processes(void) | |||
| 84 | return 0; | 88 | return 0; |
| 85 | thaw: | 89 | thaw: |
| 86 | thaw_processes(); | 90 | thaw_processes(); |
| 91 | enable_cpus: | ||
| 87 | enable_nonboot_cpus(); | 92 | enable_nonboot_cpus(); |
| 88 | pm_restore_console(); | 93 | pm_restore_console(); |
| 89 | return error; | 94 | return error; |
diff --git a/kernel/power/main.c b/kernel/power/main.c index 6d295c77679..4d403323a7b 100644 --- a/kernel/power/main.c +++ b/kernel/power/main.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
| 17 | #include <linux/pm.h> | 17 | #include <linux/pm.h> |
| 18 | #include <linux/console.h> | 18 | #include <linux/console.h> |
| 19 | #include <linux/cpu.h> | ||
| 19 | 20 | ||
| 20 | #include "power.h" | 21 | #include "power.h" |
| 21 | 22 | ||
| @@ -51,7 +52,7 @@ void pm_set_ops(struct pm_ops * ops) | |||
| 51 | 52 | ||
| 52 | static int suspend_prepare(suspend_state_t state) | 53 | static int suspend_prepare(suspend_state_t state) |
| 53 | { | 54 | { |
| 54 | int error = 0; | 55 | int error; |
| 55 | unsigned int free_pages; | 56 | unsigned int free_pages; |
| 56 | 57 | ||
| 57 | if (!pm_ops || !pm_ops->enter) | 58 | if (!pm_ops || !pm_ops->enter) |
| @@ -59,12 +60,9 @@ static int suspend_prepare(suspend_state_t state) | |||
| 59 | 60 | ||
| 60 | pm_prepare_console(); | 61 | pm_prepare_console(); |
| 61 | 62 | ||
| 62 | disable_nonboot_cpus(); | 63 | error = disable_nonboot_cpus(); |
| 63 | 64 | if (error) | |
| 64 | if (num_online_cpus() != 1) { | ||
| 65 | error = -EPERM; | ||
| 66 | goto Enable_cpu; | 65 | goto Enable_cpu; |
| 67 | } | ||
| 68 | 66 | ||
| 69 | if (freeze_processes()) { | 67 | if (freeze_processes()) { |
| 70 | error = -EAGAIN; | 68 | error = -EAGAIN; |
diff --git a/kernel/power/smp.c b/kernel/power/smp.c deleted file mode 100644 index 5957312b2d6..00000000000 --- a/kernel/power/smp.c +++ /dev/null | |||
| @@ -1,62 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * drivers/power/smp.c - Functions for stopping other CPUs. | ||
| 3 | * | ||
| 4 | * Copyright 2004 Pavel Machek <pavel@suse.cz> | ||
| 5 | * Copyright (C) 2002-2003 Nigel Cunningham <ncunningham@clear.net.nz> | ||
| 6 | * | ||
| 7 | * This file is released under the GPLv2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #undef DEBUG | ||
| 11 | |||
| 12 | #include <linux/smp_lock.h> | ||
| 13 | #include <linux/interrupt.h> | ||
| 14 | #include <linux/suspend.h> | ||
| 15 | #include <linux/module.h> | ||
| 16 | #include <linux/cpu.h> | ||
| 17 | #include <asm/atomic.h> | ||
| 18 | #include <asm/tlbflush.h> | ||
| 19 | |||
| 20 | /* This is protected by pm_sem semaphore */ | ||
| 21 | static cpumask_t frozen_cpus; | ||
| 22 | |||
| 23 | void disable_nonboot_cpus(void) | ||
| 24 | { | ||
| 25 | int cpu, error; | ||
| 26 | |||
| 27 | error = 0; | ||
| 28 | cpus_clear(frozen_cpus); | ||
| 29 | printk("Freezing cpus ...\n"); | ||
| 30 | for_each_online_cpu(cpu) { | ||
| 31 | if (cpu == 0) | ||
| 32 | continue; | ||
| 33 | error = cpu_down(cpu); | ||
| 34 | if (!error) { | ||
| 35 | cpu_set(cpu, frozen_cpus); | ||
| 36 | printk("CPU%d is down\n", cpu); | ||
| 37 | continue; | ||
| 38 | } | ||
| 39 | printk("Error taking cpu %d down: %d\n", cpu, error); | ||
| 40 | } | ||
| 41 | BUG_ON(raw_smp_processor_id() != 0); | ||
| 42 | if (error) | ||
| 43 | panic("cpus not sleeping"); | ||
| 44 | } | ||
| 45 | |||
| 46 | void enable_nonboot_cpus(void) | ||
| 47 | { | ||
| 48 | int cpu, error; | ||
| 49 | |||
| 50 | printk("Thawing cpus ...\n"); | ||
| 51 | for_each_cpu_mask(cpu, frozen_cpus) { | ||
| 52 | error = cpu_up(cpu); | ||
| 53 | if (!error) { | ||
| 54 | printk("CPU%d is up\n", cpu); | ||
| 55 | continue; | ||
| 56 | } | ||
| 57 | printk("Error taking cpu %d up: %d\n", cpu, error); | ||
| 58 | panic("Not enough cpus"); | ||
| 59 | } | ||
| 60 | cpus_clear(frozen_cpus); | ||
| 61 | } | ||
| 62 | |||
diff --git a/kernel/power/user.c b/kernel/power/user.c index 3f1539fbe48..0ef5e4ba39e 100644 --- a/kernel/power/user.c +++ b/kernel/power/user.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/swapops.h> | 19 | #include <linux/swapops.h> |
| 20 | #include <linux/pm.h> | 20 | #include <linux/pm.h> |
| 21 | #include <linux/fs.h> | 21 | #include <linux/fs.h> |
| 22 | #include <linux/cpu.h> | ||
| 22 | 23 | ||
| 23 | #include <asm/uaccess.h> | 24 | #include <asm/uaccess.h> |
| 24 | 25 | ||
| @@ -139,12 +140,15 @@ static int snapshot_ioctl(struct inode *inode, struct file *filp, | |||
| 139 | if (data->frozen) | 140 | if (data->frozen) |
| 140 | break; | 141 | break; |
| 141 | down(&pm_sem); | 142 | down(&pm_sem); |
| 142 | disable_nonboot_cpus(); | 143 | error = disable_nonboot_cpus(); |
| 143 | if (freeze_processes()) { | 144 | if (!error) { |
| 144 | thaw_processes(); | 145 | error = freeze_processes(); |
| 145 | enable_nonboot_cpus(); | 146 | if (error) { |
| 146 | error = -EBUSY; | 147 | thaw_processes(); |
| 148 | error = -EBUSY; | ||
| 149 | } | ||
| 147 | } | 150 | } |
| 151 | enable_nonboot_cpus(); | ||
| 148 | up(&pm_sem); | 152 | up(&pm_sem); |
| 149 | if (!error) | 153 | if (!error) |
| 150 | data->frozen = 1; | 154 | data->frozen = 1; |
