diff options
author | Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> | 2013-07-01 19:38:54 +0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2013-07-08 22:54:28 +0400 |
commit | 9ad95879cd1b22ed016c804f8d686ff83a41a9d4 (patch) | |
tree | 0cee9371366a6c1bfa15757356b6213aa09a565c /drivers/acpi/apei | |
parent | c3d1fb567a634dcdff4c6f6095b2053260988336 (diff) | |
download | linux-9ad95879cd1b22ed016c804f8d686ff83a41a9d4.tar.xz |
mce: acpi/apei: Add a boot option to disable ff mode for corrected errors
Add a boot option to disable firmware first mode for corrected errors.
Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Acked-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'drivers/acpi/apei')
-rw-r--r-- | drivers/acpi/apei/hest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/apei/hest.c b/drivers/acpi/apei/hest.c index b108b116bf28..502024502b13 100644 --- a/drivers/acpi/apei/hest.c +++ b/drivers/acpi/apei/hest.c @@ -262,7 +262,8 @@ void __init acpi_hest_init(void) goto err; } - apei_hest_parse(hest_parse_cmc, NULL); + if (!acpi_disable_cmcff) + apei_hest_parse(hest_parse_cmc, NULL); if (!ghes_disable) { rc = apei_hest_parse(hest_parse_ghes_count, &ghes_count); |