aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2010-05-27 22:16:22 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2010-05-30 09:06:00 -0700
commite9a5f426b85e429bffaee4e0b086b1e742a39fa6 (patch)
tree65ba763309c5d771c1f179af5b36fce996742b1c /kernel
parentrapidio: fix new kernel-doc warnings (diff)
downloadlinux-dev-e9a5f426b85e429bffaee4e0b086b1e742a39fa6.tar.xz
linux-dev-e9a5f426b85e429bffaee4e0b086b1e742a39fa6.zip
CPU: Avoid using unititialized error variable in disable_nonboot_cpus()
If there's only one CPU online when disable_nonboot_cpus() is called, the error variable will not be initialized and that may lead to erroneous behavior. Fix this issue by initializing error in disable_nonboot_cpus() as appropriate. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 3097382eb44a..8b92539b4754 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -394,7 +394,7 @@ static cpumask_var_t frozen_cpus;
int disable_nonboot_cpus(void)
{
- int cpu, first_cpu, error;
+ int cpu, first_cpu, error = 0;
cpu_maps_update_begin();
first_cpu = cpumask_first(cpu_online_mask);