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/main.c | |
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/main.c')
-rw-r--r-- | kernel/power/main.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/kernel/power/main.c b/kernel/power/main.c index 6d295c776794..4d403323a7bb 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; |