All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers/hwmon/coretemp: Fix incorrect hot-removed CPU's core sensor issue
@ 2010-08-18 22:53 ` Fenghua Yu
  0 siblings, 0 replies; 30+ messages in thread
From: Fenghua Yu @ 2010-08-18 22:53 UTC (permalink / raw)
  To: Rudolf Marek, Huaxu Wan, H Peter Anvin, Chen Gong, Jean Delvare
  Cc: linux-kernel, lm-sensors, Fenghua Yu

From: Fenghua Yu <fenghua.yu@intel.com>

In current coretemp driver, when a CPU in dev_list is hot-removed, although its
HT sibling is still running, its core sensor is gone and not available to user
level application any more.

When a CPU is hot-removed, its core sensor should be still available to upper
level application as long as the hot-removed CPU's HT sibling is still running.
A core sensor is invisible to user level only when all of siblings in a core are
hot-removed.

This patch fixes this issue.

Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
---
 drivers/hwmon/coretemp.c |   25 ++++++++++++++++++++++---
 1 files changed, 22 insertions(+), 3 deletions(-)

diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c
index c070c97..2257cc4 100644
--- a/drivers/hwmon/coretemp.c
+++ b/drivers/hwmon/coretemp.c
@@ -418,7 +418,7 @@ struct pdev_entry {
 static LIST_HEAD(pdev_list);
 static DEFINE_MUTEX(pdev_list_mutex);
 
-static int __cpuinit coretemp_device_add(unsigned int cpu)
+static int coretemp_device_add(unsigned int cpu)
 {
 	int err;
 	struct platform_device *pdev;
@@ -483,15 +483,34 @@ exit:
 static void coretemp_device_remove(unsigned int cpu)
 {
 	struct pdev_entry *p, *n;
-	mutex_lock(&pdev_list_mutex);
+#ifdef CONFIG_SMP
+	int s;
+#endif
+
 	list_for_each_entry_safe(p, n, &pdev_list, list) {
 		if (p->cpu == cpu) {
+			mutex_lock(&pdev_list_mutex);
 			platform_device_unregister(p->pdev);
 			list_del(&p->list);
 			kfree(p);
+			mutex_unlock(&pdev_list_mutex);
+
+#ifdef CONFIG_SMP
+			/*
+			 * Add removed CPU's HT sibling to dev_list.
+			 * If there is no sibling available, the core sensor
+			 * is invisiable to user space any more.
+			 */
+			for_each_cpu(s, cpu_sibling_mask(cpu)) {
+				if (s != cpu) {
+					coretemp_device_add(s);
+					break;
+				}
+			}
+#endif
+			return;
 		}
 	}
-	mutex_unlock(&pdev_list_mutex);
 }
 
 static int __cpuinit coretemp_cpu_callback(struct notifier_block *nfb,
-- 
1.6.0.3


^ permalink raw reply related	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2010-09-04 16:17 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-18 22:53 [PATCH] drivers/hwmon/coretemp: Fix incorrect hot-removed CPU's core sensor issue Fenghua Yu
2010-08-18 22:53 ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Fix incorrect Fenghua Yu
2010-08-18 22:53 ` [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Fenghua Yu
2010-08-18 22:53   ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Fenghua Yu
2010-08-19  7:24   ` [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Jean Delvare
2010-08-19  7:24     ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Jean Delvare
2010-08-19 19:04     ` [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables H. Peter Anvin
2010-08-19 19:04       ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of H. Peter Anvin
2010-08-19 21:26       ` [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Jean Delvare
2010-08-19 21:26         ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Jean Delvare
2010-08-19 21:28         ` [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables H. Peter Anvin
2010-08-19 21:28           ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of H. Peter Anvin
2010-08-19 21:32           ` [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Jean Delvare
2010-08-19 21:32             ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Jean Delvare
2010-08-19 21:51         ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Guenter Roeck
2010-08-19 21:51           ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Guenter Roeck
2010-09-04 12:39           ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Jean Delvare
2010-09-04 12:39             ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Jean Delvare
2010-09-04 14:30             ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Guenter Roeck
2010-09-04 14:30               ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Guenter Roeck
2010-09-04 16:17               ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of unused variables Jean Delvare
2010-09-04 16:17                 ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Remove warnings of Jean Delvare
2010-08-18 22:53 ` [PATCH] drivers/hwmon/pkgtemp: Fix improper locking in CPU hot remove Fenghua Yu
2010-08-18 22:53   ` [lm-sensors] [PATCH] drivers/hwmon/pkgtemp: Fix improper locking in Fenghua Yu
2010-08-19 17:07 ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Fix incorrect hot-removed CPU's core sensor issue Guenter Roeck
2010-08-19 17:07   ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Fix incorrect Guenter Roeck
2010-08-20  8:26 ` [PATCH] drivers/hwmon/coretemp: Fix incorrect hot-removed CPU's core sensor issue Jean Delvare
2010-08-20  8:26   ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Fix incorrect Jean Delvare
2010-08-20 21:53   ` [PATCH] drivers/hwmon/coretemp: Fix incorrect hot-removed CPU's core sensor issue Fenghua Yu
2010-08-20 21:53     ` [lm-sensors] [PATCH] drivers/hwmon/coretemp: Fix incorrect Fenghua Yu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.