[PATCH] Solve the issue with memory corruption on Intel BIOS.

From: Alexey Fisher
Date: Wed Jul 15 2009 - 01:55:30 EST


In Bug 13710 was reported "corrupted low memory after resume on Intel
DG45ID board". It use AMI BIOS with Intel vendor string. We need to add this
vendor to CONFIG_X86_RESERVE_LOW_64K workaround.

Signed-off-by: Alexey Fisher <bug-track@xxxxxxxxxxxxxxxxx>
---
arch/x86/kernel/setup.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index de2cab1..89d00e2 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -672,6 +672,13 @@ static struct dmi_system_id __initdata bad_bios_dmi_table[] = {
DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies"),
},
},
+ {
+ .callback = dmi_low_memory_corruption,
+ .ident = "Intel BIOS",
+ .matches = {
+ DMI_MATCH(DMI_BIOS_VENDOR, "Intel Corp."),
+ },
+ },
#endif
{}
};
--
1.6.3.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/