public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Solve the issue with memory corruption on Intel BIOS.
@ 2009-07-15  5:55 Alexey Fisher
  2009-07-15  9:34 ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Alexey Fisher @ 2009-07-15  5:55 UTC (permalink / raw)
  To: ykzhao, linux-kernel, tglx, mingo; +Cc: Alexey Fisher

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@fisher-privat.net>
---
 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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-07-15 15:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-15  5:55 [PATCH] Solve the issue with memory corruption on Intel BIOS Alexey Fisher
2009-07-15  9:34 ` Alan Cox
2009-07-15  0:10   ` Pavel Machek
2009-07-15 15:57   ` Alexey Fisher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox