aboutsummaryrefslogtreecommitdiff
path: root/drivers/char/watchdog/wdt_pci.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2005-07-26 11:53:19 -0600
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-26 14:35:43 -0700
commitf82567e55fcd25bb7addf2cfd8b79f36f409dc2e (patch)
treec579e6c540b10bfd69abc086f985fc066d2708fc /drivers/char/watchdog/wdt_pci.c
parent4de8b9b76017365572f778332d74fe050d9c8c2a (diff)
[PATCH] Fix watchdog drivers to call emergency_reboot()
If a watchdog driver has decided it is time to reboot the system we know something is wrong and we are in interrupt context so emergency_reboot() is what we want. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/watchdog/wdt_pci.c')
-rw-r--r--drivers/char/watchdog/wdt_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/watchdog/wdt_pci.c b/drivers/char/watchdog/wdt_pci.c
index 7651deda928..c80cb77b92f 100644
--- a/drivers/char/watchdog/wdt_pci.c
+++ b/drivers/char/watchdog/wdt_pci.c
@@ -311,7 +311,7 @@ static irqreturn_t wdtpci_interrupt(int irq, void *dev_id, struct pt_regs *regs)
printk(KERN_CRIT PFX "Would Reboot.\n");
#else
printk(KERN_CRIT PFX "Initiating system reboot.\n");
- machine_restart(NULL);
+ emergency_restart(NULL);
#endif
#else
printk(KERN_CRIT PFX "Reset in 5ms.\n");