aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/cpu/mcheck/mce.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c
index b3323cab9139..466f47301334 100644
--- a/arch/x86/kernel/cpu/mcheck/mce.c
+++ b/arch/x86/kernel/cpu/mcheck/mce.c
@@ -56,6 +56,9 @@
56 56
57static DEFINE_MUTEX(mce_log_mutex); 57static DEFINE_MUTEX(mce_log_mutex);
58 58
59/* sysfs synchronization */
60static DEFINE_MUTEX(mce_sysfs_mutex);
61
59#define CREATE_TRACE_POINTS 62#define CREATE_TRACE_POINTS
60#include <trace/events/mce.h> 63#include <trace/events/mce.h>
61 64
@@ -2088,6 +2091,7 @@ static ssize_t set_ignore_ce(struct device *s,
2088 if (kstrtou64(buf, 0, &new) < 0) 2091 if (kstrtou64(buf, 0, &new) < 0)
2089 return -EINVAL; 2092 return -EINVAL;
2090 2093
2094 mutex_lock(&mce_sysfs_mutex);
2091 if (mca_cfg.ignore_ce ^ !!new) { 2095 if (mca_cfg.ignore_ce ^ !!new) {
2092 if (new) { 2096 if (new) {
2093 /* disable ce features */ 2097 /* disable ce features */
@@ -2100,6 +2104,8 @@ static ssize_t set_ignore_ce(struct device *s,
2100 on_each_cpu(mce_enable_ce, (void *)1, 1); 2104 on_each_cpu(mce_enable_ce, (void *)1, 1);
2101 } 2105 }
2102 } 2106 }
2107 mutex_unlock(&mce_sysfs_mutex);
2108
2103 return size; 2109 return size;
2104} 2110}
2105 2111
@@ -2112,6 +2118,7 @@ static ssize_t set_cmci_disabled(struct device *s,
2112 if (kstrtou64(buf, 0, &new) < 0) 2118 if (kstrtou64(buf, 0, &new) < 0)
2113 return -EINVAL; 2119 return -EINVAL;
2114 2120
2121 mutex_lock(&mce_sysfs_mutex);
2115 if (mca_cfg.cmci_disabled ^ !!new) { 2122 if (mca_cfg.cmci_disabled ^ !!new) {
2116 if (new) { 2123 if (new) {
2117 /* disable cmci */ 2124 /* disable cmci */
@@ -2123,6 +2130,8 @@ static ssize_t set_cmci_disabled(struct device *s,
2123 on_each_cpu(mce_enable_ce, NULL, 1); 2130 on_each_cpu(mce_enable_ce, NULL, 1);
2124 } 2131 }
2125 } 2132 }
2133 mutex_unlock(&mce_sysfs_mutex);
2134
2126 return size; 2135 return size;
2127} 2136}
2128 2137
@@ -2130,8 +2139,19 @@ static ssize_t store_int_with_restart(struct device *s,
2130 struct device_attribute *attr, 2139 struct device_attribute *attr,
2131 const char *buf, size_t size) 2140 const char *buf, size_t size)
2132{ 2141{
2133 ssize_t ret = device_store_int(s, attr, buf, size); 2142 unsigned long old_check_interval = check_interval;
2143 ssize_t ret = device_store_ulong(s, attr, buf, size);
2144
2145 if (check_interval == old_check_interval)
2146 return ret;
2147
2148 if (check_interval < 1)
2149 check_interval = 1;
2150
2151 mutex_lock(&mce_sysfs_mutex);
2134 mce_restart(); 2152 mce_restart();
2153 mutex_unlock(&mce_sysfs_mutex);
2154
2135 return ret; 2155 return ret;
2136} 2156}
2137 2157