aboutsummaryrefslogtreecommitdiffstats
path: root/mce.y
diff options
context:
space:
mode:
authorHuang Ying <ying.huang@intel.com>2009-05-26 15:55:19 +0800
committerHuang Ying <ying.huang@intel.com>2009-05-26 15:55:19 +0800
commit77b4b23826e5430edd0efc5f90443f4fa128f541 (patch)
tree1102a20c2c149dd1d3957b20b6f7a18b7132fb62 /mce.y
parent8762aaa22e1976bef9b392750d3abd5f429743c6 (diff)
downloadmce-inject-77b4b23826e5430edd0efc5f90443f4fa128f541.tar.gz
Add UCR flags support
To support injecting UCR errors, parsing/adding support for several new flags of MCi_STATUS register are added. Signed-off-by: Huang Ying <ying.huang@intel.com>
Diffstat (limited to 'mce.y')
-rw-r--r--mce.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/mce.y b/mce.y
index 309580c..e2d8a3c 100644
--- a/mce.y
+++ b/mce.y
@@ -47,7 +47,7 @@ static void init(void);
%token MACHINE CHECK EXCEPTION
%token RIPV EIPV MCIP
-%token VAL OVER UC EN PCC
+%token VAL OVER UC EN PCC S AR UCNA SRAO SRAR
%%
@@ -97,7 +97,7 @@ status_list: /* empty */ { $$ = 0; }
| status_list status { $$ = $1 | $2; }
status: UC | EN | VAL | OVER | PCC | NUMBER | CORRECTED | UNCORRECTED |
- FATAL
+ FATAL | S | AR | UCNA | SRAO | SRAR
;
%%