aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2013-12-14 12:30:15 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-12-18 19:45:38 -0500
commitf36fdb9f0266811ee27140acc6ac5ff21199b159 (patch)
treedb55e44e0d29792be1f0ebba9e92939e54d4d8a6 /drivers/char
parent14d32383965243ea37f00656538d91a2ea3a719f (diff)
i8k: Force SMM to run on CPU 0
On Studio 1555 with dual-core CPU, reading sensor attributes exported by this driver resulted in random failures combined with system hangups and forced logouts. Information in drivers/firmware/dcdbas.c suggests that SMM accesses must run on CPU 0. With this patch, the problems are gone, suggesting that this is in fact the case. Code derived from drivers/firmware/dcdbas.c. Cc: Jean Delvare <khali@linux-fr.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/i8k.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c
index 7e31e47ef987..f24bbcd848de 100644
--- a/drivers/char/i8k.c
+++ b/drivers/char/i8k.c
@@ -31,6 +31,7 @@
31#include <linux/hwmon-sysfs.h> 31#include <linux/hwmon-sysfs.h>
32#include <linux/uaccess.h> 32#include <linux/uaccess.h>
33#include <linux/io.h> 33#include <linux/io.h>
34#include <linux/sched.h>
34 35
35#include <linux/i8k.h> 36#include <linux/i8k.h>
36 37
@@ -130,6 +131,17 @@ static int i8k_smm(struct smm_regs *regs)
130{ 131{
131 int rc; 132 int rc;
132 int eax = regs->eax; 133 int eax = regs->eax;
134 cpumask_var_t old_mask;
135
136 /* SMM requires CPU 0 */
137 if (!alloc_cpumask_var(&old_mask, GFP_KERNEL))
138 return -ENOMEM;
139 cpumask_copy(old_mask, &current->cpus_allowed);
140 set_cpus_allowed_ptr(current, cpumask_of(0));
141 if (smp_processor_id() != 0) {
142 rc = -EBUSY;
143 goto out;
144 }
133 145
134#if defined(CONFIG_X86_64) 146#if defined(CONFIG_X86_64)
135 asm volatile("pushq %%rax\n\t" 147 asm volatile("pushq %%rax\n\t"
@@ -185,9 +197,12 @@ static int i8k_smm(struct smm_regs *regs)
185 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory"); 197 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
186#endif 198#endif
187 if (rc != 0 || (regs->eax & 0xffff) == 0xffff || regs->eax == eax) 199 if (rc != 0 || (regs->eax & 0xffff) == 0xffff || regs->eax == eax)
188 return -EINVAL; 200 rc = -EINVAL;
189 201
190 return 0; 202out:
203 set_cpus_allowed_ptr(current, old_mask);
204 free_cpumask_var(old_mask);
205 return rc;
191} 206}
192 207
193/* 208/*