diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2005-07-26 13:55:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-26 17:35:44 -0400 |
commit | 970d32443e3d0be57a5cdc3de3752f528424b73d (patch) | |
tree | cf39589a581d461d5ed4a9311cb236dbe8544453 | |
parent | f82567e55fcd25bb7addf2cfd8b79f36f409dc2e (diff) |
[PATCH] In hangcheck-timer.c call emergency_restart()
If we've hung a clean reboot does not sound like a real
option.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/char/hangcheck-timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/hangcheck-timer.c b/drivers/char/hangcheck-timer.c index 78e650fc5b41..81d811edf3c5 100644 --- a/drivers/char/hangcheck-timer.c +++ b/drivers/char/hangcheck-timer.c | |||
@@ -173,7 +173,7 @@ static void hangcheck_fire(unsigned long data) | |||
173 | } | 173 | } |
174 | if (hangcheck_reboot) { | 174 | if (hangcheck_reboot) { |
175 | printk(KERN_CRIT "Hangcheck: hangcheck is restarting the machine.\n"); | 175 | printk(KERN_CRIT "Hangcheck: hangcheck is restarting the machine.\n"); |
176 | machine_restart(NULL); | 176 | emergency_restart(); |
177 | } else { | 177 | } else { |
178 | printk(KERN_CRIT "Hangcheck: hangcheck value past margin!\n"); | 178 | printk(KERN_CRIT "Hangcheck: hangcheck value past margin!\n"); |
179 | } | 179 | } |