aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHuang Ying <ying.huang@intel.com>2008-12-12 13:30:24 +0100
committerAndi Kleen <ak@linux.intel.com>2008-12-12 13:30:24 +0100
commit17f29301ed5966e5f82e2ff035a34e77fd3a0ffc (patch)
tree59937277bb750558c9bafea120e1d3f95545ba8b
parent385f9e6b6aa9e2cbe76cb95c31f72699d6924eb1 (diff)
downloadmce-inject-17f29301ed5966e5f82e2ff035a34e77fd3a0ffc.tar.gz
corrected_en
Set MCE_STATUS_EN for CORRECTED CORRECTED should have MCI_STATUS_EN set, otherwise the MCE will be ignored by kernel MCE poller. Signed-off-by: Huang Ying <ying.huang@intel.com>
-rw-r--r--mce.lex2
1 files changed, 1 insertions, 1 deletions
diff --git a/mce.lex b/mce.lex
index 048526d..7e5f1dc 100644
--- a/mce.lex
+++ b/mce.lex
@@ -70,7 +70,7 @@ static struct key {
KEY(NOBROADCAST),
KEY(HOLD),
KEY(IN_IRQ),
- KEYVAL(CORRECTED, MCI_STATUS_VAL), // checkme
+ KEYVAL(CORRECTED, MCI_STATUS_VAL|MCI_STATUS_EN), // checkme
KEYVAL(UNCORRECTED, MCI_STATUS_VAL|MCI_STATUS_UC|MCI_STATUS_EN),
KEYVAL(FATAL, MCI_STATUS_VAL|MCI_STATUS_UC|MCI_STATUS_EN
|MCI_STATUS_PCC),