aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/mce.h
diff options
context:
space:
mode:
authorHuang Ying <ying.huang@intel.com>2010-06-08 02:09:10 -0400
committerH. Peter Anvin <hpa@zytor.com>2010-06-11 00:27:36 -0400
commit3c417588603e5411f29d22a40f3b5ff71529a4f0 (patch)
treeff76c0cbaf48233e1e2ffb35c97b605b88144372 /arch/x86/include/asm/mce.h
parent1f9a0bd4989fd16842ad71fc89240b48ab191446 (diff)
x86, mce: Fix MSR_IA32_MCI_CTL2 CMCI threshold setup
It is reported that CMCI is not raised when number of corrected error reaches preset threshold. After inspection, it is found that MSR_IA32_MCI_CTL2 threshold field is not setup properly. This patch fixed it. Value of MCI_CTL2_CMCI_THRESHOLD_MASK is fixed according to x86_64 Software Developer's Manual too. Reported-by: Shaohui Zheng <shaohui.zheng@intel.com> Signed-off-by: Huang Ying <ying.huang@intel.com> LKML-Reference: <1275977350.3444.660.camel@yhuang-dev.sh.intel.com> Reviewed-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include/asm/mce.h')
-rw-r--r--arch/x86/include/asm/mce.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h
index 82db1d8f064b..c62c13cb9788 100644
--- a/arch/x86/include/asm/mce.h
+++ b/arch/x86/include/asm/mce.h
@@ -40,7 +40,7 @@
40 40
41/* CTL2 register defines */ 41/* CTL2 register defines */
42#define MCI_CTL2_CMCI_EN (1ULL << 30) 42#define MCI_CTL2_CMCI_EN (1ULL << 30)
43#define MCI_CTL2_CMCI_THRESHOLD_MASK 0xffffULL 43#define MCI_CTL2_CMCI_THRESHOLD_MASK 0x7fffULL
44 44
45#define MCJ_CTX_MASK 3 45#define MCJ_CTX_MASK 3
46#define MCJ_CTX(flags) ((flags) & MCJ_CTX_MASK) 46#define MCJ_CTX(flags) ((flags) & MCJ_CTX_MASK)