diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-09-07 04:51:32 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-09-07 11:39:59 -0400 |
commit | 5394f80f92642c61fc2a95385be85f2fdcfb5adb (patch) | |
tree | 313dd51430cf7ff7f7161019bb3d3bf89320357c /drivers | |
parent | 7686ad5606f08d9dfb33a2087a36c8366366015b (diff) |
x86: check for and defend against BIOS memory corruption
Some BIOSes have been observed to corrupt memory in the low 64k. This
change:
- Reserves all memory which does not have to be in that area, to
prevent it from being used as general memory by the kernel. Things
like the SMP trampoline are still in the memory, however.
- Clears the reserved memory so we can observe changes to it.
- Adds a function check_for_bios_corruption() which checks and reports on
memory becoming unexpectedly non-zero. Currently it's called in the
x86 fault handler, and the powermanagement debug output.
Signed-off-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/power/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index 273a944d4040..bf6d3554e506 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c | |||
@@ -254,6 +254,7 @@ static char *pm_verb(int event) | |||
254 | 254 | ||
255 | static void pm_dev_dbg(struct device *dev, pm_message_t state, char *info) | 255 | static void pm_dev_dbg(struct device *dev, pm_message_t state, char *info) |
256 | { | 256 | { |
257 | check_for_bios_corruption(); | ||
257 | dev_dbg(dev, "%s%s%s\n", info, pm_verb(state.event), | 258 | dev_dbg(dev, "%s%s%s\n", info, pm_verb(state.event), |
258 | ((state.event & PM_EVENT_SLEEP) && device_may_wakeup(dev)) ? | 259 | ((state.event & PM_EVENT_SLEEP) && device_may_wakeup(dev)) ? |
259 | ", may wakeup" : ""); | 260 | ", may wakeup" : ""); |