[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1317832759-10223-8-git-send-email-fenghua.yu@intel.com>
Date: Wed, 5 Oct 2011 09:39:18 -0700
From: "Fenghua Yu" <fenghua.yu@...el.com>
To: "Ingo Molnar" <mingo@...e.hu>,
"Thomas Gleixner" <tglx@...utronix.de>,
"H Peter Anvin" <hpa@...or.com>,
"Zwane Mwaikambo" <zwane@....linux.org.uk>,
"Tony Luck" <tony.luck@...el.com>,
"Asit K Mallick" <asit.k.mallick@...el.com>,
"Suresh B Siddha" <suresh.b.siddha@...el.com>,
"Len Brown" <lenb@...nel.org>
Cc: "linux-kernel" <linux-kernel@...r.kernel.org>,
"Fenghua Yu" <fenghua.yu@...el.com>
Subject: [PATCH 7/8] kernel/power/main.c: Not suspend/resume if CPU0 is offlined
From: Fenghua Yu <fenghua.yu@...el.com>
System resumes from CPU0 on today's x86 BIOS. Don't suspend/resume if CPU0 is
offlined and bsp_hotpluggable is 1.
Signed-off-by: Fenghua Yu <fenghua.yu@...el.com>
---
kernel/power/main.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/kernel/power/main.c b/kernel/power/main.c
index 6c601f8..33ffb6a 100644
--- a/kernel/power/main.c
+++ b/kernel/power/main.c
@@ -12,6 +12,7 @@
#include <linux/string.h>
#include <linux/resume-trace.h>
#include <linux/workqueue.h>
+#include <linux/cpu.h>
#include "power.h"
@@ -178,6 +179,14 @@ static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr,
int len;
int error = -EINVAL;
+#ifdef CONFIG_HOTPLUG_CPU
+ if (bsp_hotpluggable && cpumask_first(cpu_online_mask) != 0) {
+ printk(KERN_WARNING "Because CPU0 is offlined, system can't suspend/resume.\n");
+
+ return -ENODEV;
+ }
+#endif
+
p = memchr(buf, '\n', n);
len = p ? p - buf : n;
--
1.6.0.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists